-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path40grpsearch.html
55 lines (53 loc) · 1.45 KB
/
40grpsearch.html
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
<div style="font-size:12px;">
Again with Multiple search we can use another useful option grouping search <br/>
If this option is enabled the user can make a more complex searches in the database:<br/>
The query can can look like this : <br/>
WHERE (id > 10 OR id < 13) AND name LIKE 'C%'
</div>
<br />
<table id="grps"></table>
<div id="pgrps"></div>
<script src="40grpsearch.js" type="text/javascript"> </script>
<br />
<div style="font-size:12px;">
<b> HTML </b>
<XMP>
<table id="grps"></table>
<div id="pgrps"></div>
</XMP>
<b>Java Scrpt code</b>
<XMP>
jQuery("#grps").jqGrid({
url:'server.php?q=4',
datatype: "json",
colNames:['Inv No', 'Date', 'Client', 'Amount','Tax','Total','Notes'],
colModel:[
{name:'id', key : true, index:'id', width:55},
{name:'invdate',index:'invdate', width:90},
{name:'name', index:'name', width:100},
{name:'amount',index:'amount', width:80, align:"right"},
{name:'tax',index:'tax', width:80, align:"right"},
{name:'total',index:'total', width:80,align:"right"},
{name:'note',index:'note', width:150, sortable:false}
],
rowNum:10,
width:700,
rowList:[10,20,30],
pager: '#pgrps',
sortname: 'invdate',
viewrecords: true,
sortorder: "desc",
jsonReader: {
repeatitems : false
},
caption: "Complex search",
height: '100%'
});
jQuery("#grps").jqGrid('navGrid','#pgrps',
{edit:false,add:false,del:false},
{},
{},
{},
{multipleSearch:true, multipleGroup:true}
);
</XMP>