Hi, I have a jqgrid which is using an xml feed like this:
- jQuery(document).ready(function(){
jQuery("#list").jqGrid({
url:'list_xml/',
datatype: 'xml',
mtype: 'GET',....
The grid is all working fine. However, I need to pass extra parameters to the GET request that are retrieved from other elements on the webpage, such as a separate datepicker widget.
How can I add these values to the GET request?
Thanks!