Jqgrid - Paging not showing Icons
Hello,I am using jqgrid and apply paging but here the issue is that It is not showing First, Next, Last, Previous Icons and functionality. It only shows text box for Paging number and if i enter number in that text box it is working correctly.
but, I need to show First, Next, Previous, Last button and functionality.
any idea, where i am wrong. I am putting my small piece of code here also,
---------------------------------------------------------------------
sortorder: 'desc',
loadonce: true,
autoencode: true,
pgbuttons: false,
viewrecords: true,
height: 'auto',
width: '100%',
autowidth: true,
footerrow: true,
pager: jQuery('#dvGridDataFooter'),
rowNum: 10,
rowList: [5, 10, 20, 50],
cmTemplate: { sortable: true },
}).navGrid('#dvGridDataFooter', { edit: false, add: false, del: false, search: true, refresh: false, position: 'right' })
$('#dvGridDataFooter').css("height", "auto");
---------------------------------------------------------------------