Hi Peter,
Is there a way that I shoe detail for all rows with single statement
Like $(“#jqxgrid”).jqxGrid(‘showrowdetails’, indexlist);
$(“#jqxgrid”).jqxGrid(‘hiderowdetails’, indexList);
where index list is the list of all rows. I have a client who wants a configuration option where he wants to see the details of all rows when the grid loads. Right now I am doing in for loop, It is taking lot of time.
something like this:
$(‘#jqxgrid’).unbind(‘rowexpand’, rowExpand);
for (var i = 0; i < recordCount; i++) {
$("#jqxgrid").jqxGrid('showrowdetails', i);
expandedItems[expandedItems.length] = i;
}
$('#jqxgrid').bind('rowexpand', rowExpand);
}