i want send id of row selected from iframe 1 to another iframe 2 and switch nav active class to iframe 2
1 Answers
To get the ID of row using javascript:
var selr = jQuery('#list1').jqGrid('getGridParam','selrow');
Rest you can change the URL of iframe and pass this variable in query string, and it’s up to your logic how you are loading page in iframe.
Your Answer