jqGrid搜索无法正常工作

时间:2011-05-27 03:13:48

标签: jquery search jqgrid

我是jqgrid的新手,我不知道jqgrid是如何工作的。 我的网格中有一个搜索图标但是当我想过滤一些数据时它不起作用。 下面我发布了我的网格:

jQuery("#list").jqGrid({
                         url:'dounfinish.php',
                         datatype: 'json',
                         mtype: 'POST',
                         colNames:['id','Date', 'Line'],
                         colModel :[ 
                                    {name:'def_id',index:'def_id', hidden:true, width:55}, 
                                    {name:'Problem_date', index:'Problem_date', width:90, editable:true}, 
                                    {name:'Line', index:'Line', width:80, align:'right', editable:true, search:true},
                                    ],
                         pager: jQuery('#pager'),
                         rowNum:10,
                         rowList:[10,20,30],
                         sortname: 'Problem_date',
                         sortorder: "desc",
                         viewrecords: true,
                         imgpath: 'themes/basic/images',
                         caption: 'OQC DEFECT DATA'
                         }); 
jQuery("#list").jqGrid('navGrid','#pager',{edit:true,add:false,del:false});

我应该更改什么才能使搜索过程有效?

1 个答案:

答案 0 :(得分:0)

你试过看search wiki吗?看起来您的列定义应该如下所示:

colModel: [ 
      ... 
      {name:'price', index:'price', width:60, search:true, stype:'text', searchoptions:{dataInit:datePick, attr:{title:'Select Date'}} },
      ...
   ]