Question

I'm using jqgrids contextmenu plugin as descriped in this forum post.

My question is: How can I get all selected rows, when the grid paramter 'multiselect' is 'true? Background: I would like to apply a context menu action for all select rows.

Thanks for your anwsers, Paul

Was it helpful?

Solution

To get the selected rows on jqGrid, you can use this code:

$('#yourGrid').jqGrid("getGridParam", "selarrrow");

This will return an array containing the ids of your selected rows.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top