jqgrid 编辑添加功能详细解析 - Web前端
作者:98wpeu发布时间:2026-06-18分类:网页前端技术浏览:2
Colmodel 是jqGrid里最重要的一个属性,设置表格列的属性。
用法:
java代码 :
复制代码 代码如下:
JQuery("#gridid").jqGrid({
...
colmodel: [ {name:'name1', index:'index1'...}, {...}, ... ],
..
});
属性 数据类型 备注 默认值
align string 定义单元格对齐方式;可选值:left, center, right. left
classes String 设置列的CSS。多个class之间用空格分隔,如:'class1 class2' 。表格默认的css属性是UI-ellipsis empty string
datefmt string 对日期列进行格式化。”/”, ”-”, and ”.”都是有效的日期分隔符。y,Y,yyyy 年YY, yy 月m,mm for monthsd,dd 日. ISO Date (Y-m-d)
defval string 查询字段的默认值 空
editable boolean 单元格是否可编辑 false
editoptions Array 对列进行编辑时设置的一些属性 empty array
editrules array 对于可编辑单元格的一些额外属性设置 empty array
edittype string 可以编辑的类型。可选值:text, Textarea, select, checkbox, password, button, image and file. text
fixed boolean 列宽度是否要固定不可变 false
FORMoptions array 对于form进行编辑时的属性设置 empty
Formatoptions array 对某些列进行格式化的设置 none
formatter mixed 对列进行格式化时设置的函数名或者类型 none
hidedlg boolean 是否显示或者隐藏此列 false
hidden boolean 在初始化表格时是否要隐藏此列 false
index string 当排序时定义排序字段名称的索引,参数名为sidx empty string
jsonmap string 定义了返回的JSON数据映射 none
key boolean 当从服务器端返回的数据中没有id时,将此作为唯一rowid使用,默认只能有一个id属性 false
label string 如果colNames为空则用此值来作为列的显示名称,如果都没有设置则使用name 值 none
name string 必输项,表格列的名称,所有关键字,保留字都不能作为名称使用包括subgrid, cb and rn. Required
resizable boolean 是否可以被resizable true
search boolean 在搜索模式下,定义此列是否可以作为搜索列 true
searchoptions array 设置搜索参数 empty
sortable boolean 是否可排序 true
sorttype string 用在当datatype为local时,定义搜索列的类型,可选值:int/integer - 对integer排序float/number/currency - 排序数字date - 排序日期text - 排序文本 text
stype string 定义搜索元素的类型 text
surl string 搜索数据时的url empty string
width number 默认列的宽度,只能是象素值,不能是百分比 150
xmlmap string 定义当前列跟返回的xml数据之间的映射关系 none
unformat function ‘unformat'单元格值 null
源码中添加
复制代码 代码如下:
editurl:'index.PHP?do=do_edit',
addurl:'index.php?do=do_add',
datatype: 'xml',
mtype: 'get',
colNames:['ID', '任务名称', '所属类'
colModel :[
{name:'taskid', index:'taskid', width:100,align:'center',searchoptions:{sopt:['eq','ne','lt','le','gt','ge']}},
{name:'taskname', index:'taskname', width:100, align:'center',ediTABle:true},
{name:'classid', index:'classid', width:100, align:'center',editable:true,edittype:'select',editoptions: {
value: '1:事务;2:非事务'},editselected:'classid' },
],
添加editable后 添加也是同样有效的;
搜索
eq 等于( = )
ne 不等于( <> )
lt 小于( < )
le 小于等于( <= )
gt 大于( > )
ge 大于等于( >= )
bw 开始于 ( LIKE val% )
bn 不开始于 ( not like val%)
in 在内 ( in ())
ni 不在内( not in ())
ew 结束于 (LIKE %val )
en 不结束于
cn 包含 (LIKE %val% )
nc 不包含
相关推荐
- 模拟jQuery中的ready方法及实现按需加载css,js实例代码 - Web前端
- getJSON调用后台json数据时函数被调用两次的原因猜想 - Web前端
- 关于jquery的多个选择器的使用示例 - Web前端
- jquery配合css简单实现返回顶部效果 - Web前端
- jquery的选择器的使用技巧之如何选择input框 - Web前端
- jQuery实现图片放大预览实现原理及代码 - Web前端
- jQuery让控件左右移动的三种实现方法 - Web前端
- 解决Jquery load()加载GB2312页面时出现乱码的两种方案 - Web前端
- jquery foreach使用示例 - Web前端
- jQuery点击弹出下拉菜单的小例子 - Web前端
- 网页前端技术排行
- 最近发表
-
- WordPress随机显示特色图片插件:Random Post Thumbnails
- KeePass实现Chrome浏览器自动填充密码方法一
- LNMP一键包nginx 301强制跳转到https教程
- KeePass实现Chrome浏览器自动填充密码方法二
- #建站# 免费的VPS管理软件Xshell8/Xftp8中文版下载
- 使用Xshell 8连接VPS教程_电脑登录vps的方法
- WordPress评论界面添加烟花????效果
- 不同浏览器书签同步方案:坚果云+Floccus_详细使用教程
- iOS端KeePassXC客户端APP:Strongbox Password Safe
- 给WordPress评论中的Gravatar头像图片添加ALT属性


