hello all, i have this following code for displaying data , it works fine , but it does not show search icon, what things i lost in my code?
jQuery("#list2").jqGrid({
url:'post2.php',
datatype:"json",
colNames:['id','lastname','fname'],
colModel:[
{name:'id',index:'id',hidden:true, width:90},
{name:'fname',index:'fname', width:90},
{name:'lastname',index:'lastname', width:100}
],
rowNum:10, rowList:[10,20,30],
pager: '#pager2',
height:'100%',
sortname: 'id',
viewrecords: true,
sortorder: "asc", caption:"example1" });
jQuery("#list2").jqGrid('navGrid','#pager2',{search:true, searchtext:"Search"});
thanks