I have created a Jqgrid on a dropdown index change event..
$("#dropdown").on('change', function () {
$("#datagrid").jqGrid({
url: 'Default.aspx/callme'
...
});
This works fine for the 1st dropdown index change event. How to get the Jqgrid reloaded on every index change event of the dropdown. The Url seems to be not getting hit on the next index change event.