hello
How do I can identify the title of the selected column in the event
on_select_row?
thanks
1 Answers
On client side, you can have row details in follownig way, where "list1" is grid identifier.
Returns id or null if no row is selected (single row)
var selr = jQuery('#list1').jqGrid('getGridParam','selrow');
Return data of passed row and col, where invdate is column name
var row_date = jQuery('#list1').jqGrid('getCell', selr, 'invdate');
Your Answer