i am setting
table.jqxGrid(‘showcolumn’,’col1′); for like 8 to 10 columns. and i am setting their indexes as well..
if i do all of these in
table.jqxGrid(‘beginupdate’);
//show columns
// set the indexes
table.jqxGrid(‘endupdate’);
then some of the columns dont display title(checked.. those divs are hidden)
but if i do
table.jqxGrid(‘beginupdate’);
//show columns
table.jqxGrid(‘endupdate’);
// set the indexes
then all titles are displayed properly.. so what is the best fastest way to do this ?
Thanks