tags:

views:

114

answers:

1
A: 

It seems that your error is very simple: you should replace jquery to jQuery and jqgrid to jqGrid (a capical 'G') in the last line of your code. The following statement should work:

jQuery("#order-list-table").jqGrid('navGrid',
    '#order-list-pager',{edit:true,add:true,del:true});
Oleg
Ohhh... It seems to be a very silly mistake... Thanks for the reply :) :)
apoorvabade