-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path40grpsearch3.js
55 lines (52 loc) · 1.51 KB
/
40grpsearch3.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var template1 =
{ "groupOp": "AND",
"rules": [
{ "field": "b.name", "op": "bw", "data": "Client 1" },
{ "field": "a.amount", "op": "gt", "data": "20"}
]
};
var template2 =
{ "groupOp": "AND",
"rules": [
{ "field": "b.name", "op": "eq", "data": "Client 2" },
{ "field": "a.id", "op": "le", "data": "10"}
]
} ;
jQuery("#grps3").jqGrid({
url:'search_adv.php?q=1',
datatype: "json",
colNames:['Inv No', 'Date', 'Client', 'Amount','Tax','Total','Notes'],
colModel:[
{name:'id', key : true, index:'a.id', width:55, searchtype:"integer"},
{name:'invdate',index:'a.invdate', width:90},
{name:'name', index:'b.name', width:100},
{name:'amount',index:'a.amount', width:80, align:"right", searchtype:"number"},
{name:'tax',index:'a.tax', width:80, align:"right", searchtype:"number"},
{name:'total',index:'a.total', width:80,align:"right", searchtype:"number"},
{name:'note',index:'a.note', width:150, sortable:false}
],
rowNum:10,
width:700,
rowList:[10,20,30],
pager: '#pgrps3',
sortname: 'invdate',
viewrecords: true,
sortorder: "desc",
caption: "Show query in search",
height: '100%'
});
jQuery("#grps3").jqGrid('navGrid','#pgrps3',
{edit:false,add:false,del:false},
{},
{},
{},
{
multipleSearch:true,
multipleGroup:true,
showQuery: true,
// set the names of the template
"tmplNames" : ["Template One", "Template Two"],
// set the template contents
"tmplFilters": [template1, template2]
}
);