I am getting some unexpected results on a jqxgrid. Some methods work while others display errors.
Grid is loaded through adapter OK, grid data displays as expected.
Using latest version of jqwidgets.
jqx-all is loaded.
In the same position in an click event script I have called the following methods with the following results.
$(“#myGrid”).jqxGrid(‘getrowdata’, 0); works, returns record data object as expected
$(“#myGrid”).jqxGrid(‘getrows’, 0); works returns all record data objects as expected
$(“#myGrid”).jqxGrid(‘getdisplayrows’);
Uncaught jqxCore: Invalid parameter ‘[getdisplayrows]’ does not exist.
$(“#myGrid”).jqxGrid(‘getboundrows’);
Uncaught jqxCore: Invalid parameter ‘[getboundrows]’ does not exist.
$(“#myGrid”).jqxGrid(‘getrowboundindexbyid’, 1);
Uncaught Invalid property: getrowboundindexbyid
Can you give me any ideas what might be going on.
Many thanks!