Reputation: 36947
Refreshing data on the fly causes my table to completely break. Imagine stomping on an empty soda can. Then when the data repopulates it goes back to normal size. I am trying to see if anyone has had similar problems and if so what was your solution?
Upvotes: 0
Views: 244
Reputation: 1452
The table elements (td, th etc) need to have some fixed width/height/padding/margin settings in the CSS assigned for it. Maybe you should first render your table without any data for testing purposes - empty table. Add min-width or padding or whatever to have the table render the way you want without any data. Once you can do that, then add the data and now if you refresh it, the table may not break any more.
Upvotes: 1