easyui datagrid checkbox的相关属性整理

DataGrid其中与选择,勾选相关

DataGrid属性:
singleSelect boolean 如果为true,则只允许选择一行。 false
ctrlSelect boolean 在启用多行选择的时候允许使用Ctrl键+鼠标点击的方式进行多选操作。(该属性自1.3.6版开始可用)
checkOnSelect boolean 如果为true,当用户点击行的时候该复选框就会被选中或取消选中。如果为false,当用户仅在点击该复选框的时候才会呗选中或取消。(该属性自1.3版开始可用) true
selectOnCheck boolean 如果为true,单击复选框将永远选择行。如果为false,选择行将不选中复选框。(该属性自1.3版开始可用)

DataGrid列是一个数组对象,该元素也是一个数组对象。元素数组里面的元素是一个配置对象,它用来定义每一个列字段。
checkbox boolean 如果为true,则显示复选框。该复选框列固定宽度。 

DataGrid事件

onSelect rowIndex, rowData 在用户选择一行的时候触发,参数包括:rowIndex:选择的行的索引值,索引从0开始。rowData:对应于所选行的记录。
onUnselect rowIndex, rowData 在用户取消选择一行的时候触发,参数包括:rowIndex:选择的行的索引值,索引从0开始。rowData:对应于取消选择行的记录。
onSelectAll rows 在用户选择所有行的时候触发。
onUnselectAll rows 在用户取消选择所有行的时候触发。
onCheck rowIndex,rowData 在用户勾选一行的时候触发,参数包括:rowIndex:选中的行索引,索引从0开始。rowData:对应于所选行的记录。(该事件自1.3版开始可用)
onUncheck rowIndex,rowData 在用户取消勾选一行的时候触发,参数包括:rowIndex:选中的行索引,索引从0开始。rowData:对应于取消勾选行的记录。(该事件自1.3版开始可用)
onCheckAll rows 在用户勾选所有行的时候触发。(该事件自1.3版开始可用)
onUncheckAll rows 在用户取消勾选所有行的时候触发。(该事件自1.3版开始可用) 

方法

getChecked none 在复选框呗选中的时候返回所有行。(该方法自1.3版开始可用)
getSelected none 返回第一个被选中的行或如果没有选中的行则返回null。
getSelections none 返回所有被选中的行,当没有记录被选中的时候将返回一个空数组。
clearSelections none 清除所有选择的行。
clearChecked none 清除所有勾选的行。(该方法自1.3.2版开始可用)
selectAll none 选择当前页中所有的行。
unselectAll none 取消选择所有当前页中所有的行。
selectRow index 选择一行,行索引从0开始。
selectRecord idValue 通过ID值参数选择一行。
unselectRow index 取消选择一行。
checkAll none 勾选当前页中的所有行。(该方法自1.3版开始可用)
uncheckAll none 取消勾选当前页中的所有行。(该方法自1.3版开始可用)
checkRow index 勾选一行,行索引从0开始。(该方法自1.3版开始可用)
uncheckRow index 取消勾选一行,行索引从0开始。(该方法自1.3版开始可用) 

项目代码实例

function findCustomerCanUseBailInfo(customerId,agencyId){

    $(‘#t_customerCanReturn‘).datagrid(
            {
                idField : ‘id‘, // 只要创建数据表格 就必须要加 ifField
                title : null,
                fit : true,
                url : parent.baseUrl+ ‘customer/bail/bailPayDetailsForAuctions?customerId=‘+customerId+‘&&agencyId=‘+agencyId,
                method : ‘POST‘,
                fitColumns : false,
                nowrap : false,
                striped : true, // 隔行变色特性S
                loadMsg : ‘数据正在加载,请耐心的等待...‘,
                rownumbers : true,
                //sortName : ‘customerNo‘,
                //sortOrder : ‘desc‘,
                rowStyler : function(index, record) {
                },
                onSelect: function( rowIndex, rowData){
                    returnBailForAuctionsSum = Number(returnBailForAuctionsSum)+Number(rowData.canReturnBail);
                    $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);
                },
                onUnselect: function (rowIndex, rowData) {
                    returnBailForAuctionsSum = Number(returnBailForAuctionsSum)-Number(rowData.canReturnBail);
                    $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);
                 },
                 onSelectAll:function(rowIndex, rowData){
                     if (selectAllFlag == 1) {

                         var arr = $(‘#t_customerCanReturn‘).datagrid(‘getSelections‘);
                         if (arr.length <= 0) {
                             $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);
                             return ;
                         } 

                         returnBailForAuctionsSum = 0;

                         for (var i = 0; i < arr.length; i++) {
                             returnBailForAuctionsSum = Number(returnBailForAuctionsSum)+Number(arr[i].canReturnBail);
                         }

                         $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);

                    }
                 },
                 onUnselectAll:function(rowIndex, rowData){
                     returnBailForAuctionsSum = 0;
                     $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);
                 },
                frozenColumns : [ [ // 冻结列特性 ,不要与fitColumns 特性一起使用
                {
                    field : ‘ck‘,
                    width : 50,
                    checkbox : true
                } ] ],
                columns : [ [ {
                    field : ‘bailClass‘,
                    title : ‘保证金类别‘,
                    width : 75,
                    align : ‘center‘,
                    formatter : returnFtt
                },{
                    field : ‘agencyName‘,
                    title : ‘市场名称‘,
                    width : 120,
                    align : ‘center‘,
                }, {
                    field : ‘payWay‘,
                    title : ‘支付渠道‘,
                    width : 80,
                    align : ‘center‘,
                    formatter : payWayFtt
                }, {
                    field : ‘bailPayMoney‘,
                    title : ‘缴纳金额‘,
                    width : 80,
                    align : ‘center‘,
                }, {
                    field : ‘payWayName‘,
                    title : ‘支付方式‘,
                    width : 105,
                    align : ‘center‘,
                }, {
                    field : ‘returnBailPay‘,
                    title : ‘已退金额‘,
                    width : 80,
                    align : ‘center‘,
                    formatter : frozenFtt
                }, {
                    field : ‘canReturnBail‘,
                    title : ‘可退金额‘,
                    width : 105,
                    align : ‘center‘,
                    formatter : frozenFtt
                }, {
                    field : ‘frozenMoney‘,
                    title : ‘冻结金额‘,
                    width : 80,
                    align : ‘center‘,
                    formatter : frozenFtt
                }, {
                    field : ‘lockBailMoney‘,
                    title : ‘锁定金额‘,
                    width : 80,
                    align : ‘center‘,
                }, {
                    field : ‘payTime‘,
                    title : ‘缴纳时间‘,
                    width : 180,
                    align : ‘center‘,
                },{
                    field : ‘handlerWin‘,
                    title : ‘窗口‘,
                    width : 80,
                    align : ‘center‘,
                },{
                    field : ‘remarks‘,
                    title : ‘备注‘,
                    width : 180,
                    align : ‘center‘
                }/*, {
                    field : ‘action‘,
                    title : ‘退款金额‘,
                    width : 120,
                    align : ‘center‘,
                    formatter : returnBailFtt1
                } */] ],
                onLoadSuccess:function(){
                    $(‘#t_customerCanReturn‘).datagrid(‘selectAll‘);
                    var arr = $(‘#t_customerCanReturn‘).datagrid(‘getSelections‘);
                    if (arr.length <= 0) {
                         returnBailForAuctionsSum = 0;
                         $(‘#bailReturnSum‘).textbox(‘setValue‘,0);
                        return ;
                    } 

                    returnBailForAuctionsSum = 0;
                    for (var i = 0; i < arr.length; i++) {
                        returnBailForAuctionsSum = Number(returnBailForAuctionsSum)+Number(arr[i].canReturnBail);
                    }

                    $(‘#bailReturnSum‘).textbox(‘setValue‘,returnBailForAuctionsSum);
                    selectAllFlag = 1;
                },
                /*pagination : true,
                pageSize : 10,
                pageList : [ 5, 10, 15, 20, 50 ],*/
            }
    );
}

function returnBailFtt1(){
    var f = ‘<input type="text" style="width:100px;" value=""/>‘;

    return f;
}
时间: 2024-11-05 09:28:38

easyui datagrid checkbox的相关属性整理的相关文章

easyui datagrid checkbox multiple columns have been done do

lengku1987 2013-01-06 22:27:47 Sponsored Links easyui datagrid checkbox multiple columns have been done do? it is not possible to do ah. Sponsored Links xuan0751 2013-01-06 23:07:28 multiple columns with checkbox? jerryflex 2013-01-06 23:28:34 ah how

jQuery easyui dataGrid checkbox反显的值取不到

  使用jQuery easyui dataGrid checkbox反显后通过      var arr = $('#butnSource').datagrid( 'getSelections'); var arr1 = $('#butnSource' ).datagrid('getSelected');   通过以上的方法取不到反显的值. 解决方案 :                        $( '#butnSource').datagrid({ url : 'sourceActio

jQuery EasyUI DataGrid Checkbox

转自:http://blog.csdn.net/baronyang/article/details/9323463 这一篇将会说明两种使用 jQuery EasyUI DataGrid 的 Checkbox 设定方式,以及在既有数据下将 checked 为 true 的该笔数据列的 Checkbox 设定为 Checked,另外就是两种 Checkbox 设定方式下如何取得有勾选的数据. 有关 jQuery EasyUI DataGrid 的相关资料,可以前往官网查看, jQuery EasyU

easyui datagrid 动态添加columns属性

公司在项目设计的时候,有一个需求,就是查出来的表的字段不唯一,一张表的字段可能是三个,也可能是五个,但是却要把它显示到页面,这个给我做ui的带来一点麻烦.因为以前一般用easyui 的datagrid里的columns属性都是对应数据库表里的字段,现在字段都不知道,怎么用datagrid显示数据呢?本人在这里介绍最笨的办法,就是拼接出columns 属性的格式,我承认,我的办法效率不高,但是当你无从下手的时候,,这未尝不是解决问题的办法,当然在解决这个问题之前,我也百度了一下,试了一些办法,有的

easyui datagrid 表格组件列属性formatter和styler使用方法

明确单元格DOM结构 要想弄清楚formatter和styler属性是怎么工作的,首先要弄清楚datagrid组件内容单元格的DOM接口,注意,这里指的是内容单元格,不包括标题单元格,标题单元格的结构有所区别.我们所有内容单元格的默认DOM结构如下: 1 2 3 4 5 <td field="code">     <div style="text-align:left" class="datagrid-cell datagrid-cell

easyui datagrid 绑定json对象属性的属性

今天用easyui 的datagrid绑定数据时,后台提供的数据是实体类类型的,其中有一个实体类A的属性b是另一个实体类B类型的,而前台需要显示b的属性c,这下就悲剧了,前台没法直接绑定了,后来脑筋一转,想到了datagrid的列属性formatter,formatter提供了row,这样的话我们在formatter里面指定一下不就可以了吗 于是~ function dgDevice_datagrid() { $('#dgDevice').datagrid({ url: 'DeviceList.

jQuery EasyUI DataGrid Checkbox 数据设定与取值

$('#dg').datagrid({ title: 'CheckBox Selection on DataGrid', url: 'datagrid_data3.json', width: '700', rownumbers: true, columns:[[ { field:'ck',checkbox:true }, { field: 'productid', title: 'productid' }, { field: 'productname', title: 'productname'

easyui datagrid checkbox选中事件

$('#grid_Order').datagrid({       onCheck: function(index, data) { //alert(data[0]);               //alert(index );               $("#ChangeCore_order_id").html(data[0]);//赋值 赋安装工单id 换芯 维修 用               $("#Repair_order_id").html(dat

springmvc+easyui datagrid columns的field支持属性的子属性(field.sonfield形式或者格式化程序形式)

所谓为了支持某属性的子属性,主要为了解决:在服务器返回的json格式的数据的某个属性带有子属性,而我们恰恰又需要使用到该子属性作为我们的datagrid的某个字段的.默认情况下datagrid只能支持一级属性字段(属性的属性字段属于二级字段). 对于这个问题的解决方案有两种方式: 1.就是更改esayui源文件,使其支持field.sonfield的形式. javascript语法为我们提供了两种方式获取一个对象的属性:点字符连接和[]方式.使用[]可以很方便的将一个属性通过字符串的方式获取.但