filterToolbar方法为每列添加了搜索字段,但我需要一个全局搜索字段,以便按三个自定义列进行过滤(例如此screenshot)。
例如:
grid.jqGrid({
url: '/url/to/json',
datatype: 'json',
loadonce: true,
colModel: [
{ label: 'Last Modified', name: 'lastModified', width: 15, sorttype: 'date' },
{ label: 'Campaign Name', name: 'name', width: 35, sorttype: 'text' },
{ label: 'Camp ID', name: 'id', align: 'left', width: 10, sorttype: 'integer' },
{ label: 'Advertiser', name: 'advertiser', width: 15, sorttype: 'text' },
{ label: 'Status', name: 'status', width: 10, sorttype: 'text' },
{ label: 'Flight Dates', name: 'startDate', width: 15, sorttype: 'date' }
],
autowidth: true,
...
我需要按照姓名',' id'对表格进行排序。和'广告客户'属性。我认为这是一项微不足道的任务,但找不到现成的解决方案。