tags:

views:

262

answers:

1

Get Selected id's

jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam('selarrrow'); alert(s); });

i have data in the grid "#list4" but it is giving error: getGridParam is not a function. Please sort out the prob.

A: 

yes I am using plugin

AMAR
jQuery("#m1").click( function() { str = jQuery("#list4").jqGrid('getGridParam',('selarrrow')); });i tried above syntex, this is working.
AMAR