jquery easyUI中 editor的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery easyUI中 editor的方法相关的知识,希望对你有一定的参考价值。
jquery easyUI中 怎么获得一行的具体的值
设置好它的两个属性即可,例如:editor: type: 'validatebox', options: required: true $("#dd").datagrid(columns: [[
//显示的列
field: 'ID', title: '编号', width: 100, sortable: true, checkbox: true , field: 'UserName', title: '用户名', width: 100, sortable: true, editor: type: 'validatebox', options: required: true ,
field: 'RealName', title: '真实名称', width: 100, editor: type: 'validatebox', options: required: true , field: 'Email', title: '邮箱', width: 100, editor: type: 'validatebox', options: required: true ]]
//....); 参考技术A 是说datagrid吧,editor只是里面某一列的属性,表示编辑时的类型和属性等。获取一行直接用getSelected方法可以获取第一个选中的行的数据。getSelections方法获取所有选中行的数据。
getData返回已载入数据。getRows返回当前页的记录。。。。。。。追问
不是我想要的那答案 我还得继续看看API 不过谢谢了
参考技术B var rows = $('#dg').datagrid('getRows');//返回当前datagird的所有行var rowsSelected = $('#dg').datagrid('getSelection');//获得选中行,如果为空,返回空的数组
取得行后,再循环出你想要的东西就可以了
以上是关于jquery easyUI中 editor的方法的主要内容,如果未能解决你的问题,请参考以下文章
[转]jQuery EasyUI自定义DataGrid的Editor
JQuery easyUi datagrid 中 editor 动态设置最大值最小值
jquery easyui里面如何设置某列是可以编辑的,并且只能编辑数字,急啊!!!!!!