在浏览导航栏添加所需按钮
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<!DOCTYPE html> <html> <head> <meta charset= "utf-8" /> <title>DEMO</title> <link rel= "stylesheet" type= "text/css" href= "css/jquery-ui.min.css" /> <link rel= "stylesheet" type= "text/css" href= "css/jquery-ui.theme.min.css" /> <link rel= "stylesheet" type= "text/css" href= "css/ui.jqgrid-bootstrap-ui.css" /> <link rel= "stylesheet" type= "text/css" href= "css/ui.jqgrid.css" /> </head> <body> <div class= "main" id= "main" > <!--jqGrid所在--> <table id= "grid-table" ></table> <!--jqGrid 浏览导航栏所在--> <div id= "grid-pager" ></div> </div> <script src= "js/jquery-1.11.0.min.js" type= "text/javascript" charset= "utf-8" ></script> <script src= "js/i18n/grid.locale-cn.js" type= "text/javascript" charset= "utf-8" ></script> <script src= "js/jquery.jqGrid.min.js" type= "text/javascript" charset= "utf-8" ></script> <script type= "text/javascript" > //当 datatype 为"local" 时需填写 var grid_data = [{ id: "00001" , type: "退货出库" , pay: "1000" , name: "abc" , text: "ccc" }, { id: "00002" , type: "退货出库" , pay: "1000" , name: "abc" , text: "aaa" }, { id: "00003" , type: "退货出库" , pay: "1040.06" , name: "abc" , text: "ddd" }]; var grid_selector = "#grid-table" ; var pager_selector = "#grid-pager" ; $(document).ready( function () { $( "#grid-table" ).jqGrid({ data: grid_data, //当 datatype 为"local" 时需填写 datatype: "local" , //数据来源,本地数据(local,json,jsonp,xml等) height: 150, //高度,表格高度。可为数值、百分比或'auto' //mtype:"GET",//提交方式 colNames: [ '出库单号' , '出库类型' , '总金额' , '申请人(单位)' , '备注' ], colModel: [{ name: 'id' , index: 'id' , //索引。其和后台交互的参数为sidx key: true , //当从服务器端返回的数据中没有id时,将此作为唯一rowid使用只有一个列可以做这项设置。如果设置多于一个,那么只选取第一个,其他被忽略 width: 100, editable: false , editoptions: { size: "20" , maxlength: "30" } }, { name: 'type' , index: 'type' , width: 200, //宽度 editable: true , //是否可编辑 edittype: "select" , //可以编辑的类型。可选值:text, textarea, select, checkbox, password, button, image and file.s editoptions: { value: "1:采购入库;2:退用入库" } }, { name: 'pay' , index: 'pay' , width: 60, sorttype: "double" , editable: true }, { name: 'name' , index: 'name' , width: 150, editable: true , editoptions: { size: "20" , maxlength: "30" } }, { name: 'text' , index: 'text' , width: 250, sortable: false , editable: true , edittype: "textarea" , editoptions: { rows: "2" , cols: "10" } }, ], viewrecords: true , //是否在浏览导航栏显示记录总数 rowNum: 10, //每页显示记录数 rowList: [10, 20, 30], //用于改变显示行数的下拉列表框的元素数组。 pager: pager_selector, //分页、按钮所在的浏览导航栏 altRows: true , //设置为交替行表格,默认为false //toppager: true,//是否在上面显示浏览导航栏 multiselect: true , //是否多选 //multikey: "ctrlKey",//是否只能用Ctrl按键多选 multiboxonly: true , //是否只能点击复选框多选 // subGrid : true, //sortname:'id',//默认的排序列名 //sortorder:'asc',//默认的排序方式(asc升序,desc降序) caption: "采购退货单列表" , //表名 autowidth: true //自动宽 }); //浏览导航栏添加功能部分代码 $(grid_selector).navGrid(pager_selector, { search: true , // 检索 add: true , //添加 (只有editable为true时才能显示属性) edit: true , //修改(只有editable为true时才能显示属性) del: true , //删除 refresh: true //刷新 }, {}, // edit options {}, // add options {}, // delete options { multipleSearch: true } // search options - define multiple search ); }); </script> </body> </html> |
效果如下:
id的editable为false 所以不能被编辑
下面是具体的检索选项
首先是 所有/任意 对应逻辑为AND/OR
然后一般检索的包含选项有
本例中把pay的sorttype设置成了 “double”类型 (int型也是一样,不过显示时会省略小数,请注意)所以 选项变为
检索是唯一能在不连接后台时使用成功的功能 其他功能都会提示设置url
以上所述是jqGrid 学习笔记整理——进阶篇(一 )。下篇jqGrid 学习笔记整理——进阶篇(二),正式进入后台设计阶段,主要以最基本的MVC DAO包的设计模式 面向初学。