I have a JQGrid with 24 elements, 10 elements by page.
When I run the following line, being on the 3rd page:
var idList = $(MyList).getDataIDs();
I can only get the 4 elements from the 3rd page.
How can I get the elements from the whole list?
I've tried:
$(MyList).jqGrid('getGridParam','data');
but I get:
[]
(related with JQgrid data property returns [] on a grid with data)