I am using flexigrid and data is added dynamically to that grid. But for some reason, the rows aren't properly formatted (css style wise). I have tried calling jQuery('#tblEntAttributes').flexigrid();
after dynamically populating the table, where tblEntAttributes is my table name. But the rows still appear disoriented. By table rows contain normal text along with some checkboxes.
Any idea how I can achieve that?
jQuery('#tblEntAttributes').flexigrid();
on document on ready, the table gets formatted properly. So why isn'tjQuery('#tblEntAttributes').flexigrid();
doing the same thing when called explicitly? - AnupamjQuery('#tblEntAttributes tbody').append(newRowContent);
wherenewRowContent
contains a HTML markup string consisting of TD, TR and other elements. - Anupam