Domanda

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

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top