I am trying to find the number of records in the grid after it has loaded using the below code.
var grid = $("#list1");
data = grid.jqGrid('getRowData');
alert(data.length);
Is there a Jquery callback function that we can use to check if the grid has completely loaded.
1 Answers
Your Answer