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

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top