Rendering Hidden columns during init
Rendering Hidden columns during init
I have a large table that, during initialization, insists on displaying hidden columns until the init is complete. This is showing the user content we don't want them to see. The columns shuffle while the columns are hidden until the final init is done. The more records for the table, the worse the problem. If I have to I'll hide it until it's done...I just want to be sure there is nothing else I should be doing. I cannot (at this time) make this server-side, it is populated purely by rendering an html table.
This discussion has been closed.
Replies
So the options are to load the data using Ajax or Javascript, or to put the table into a display:none element (although that can seriously slow down old IE browsers - you might want to consider using height:1px if you need to support IE6/7/8).
Allan