欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Datagrid让某行复选框置灰不能选

程序员文章站 2022-04-08 16:47:47
...
$('#dg').datagrid({
    url: "url",
    method: 'post',
    singleSelect: false,
    collapsible: true,
    autoRowHeight: 35,
    fitColumns: true,
    pagination: true,
    rownumbers: true,
    rowStyler: function (index, row) {
        if (row.isFinanceExamine == 1) {
            return 'background-color:#6293BB;color:#fff;font-weight:bold;';
        }
    },
    onLoadSuccess: function (data) {//加载完毕后获取所有的checkbox遍历
        if (data.rows.length > 0) {
            //循环判断操作为新增的不能选择
            for (var i = 0; i < data.rows.length; i++) {
                //根据isFinanceExamine让某些行不可选
                if (data.rows[i].isFinanceExamine == 1) {
                    $("input[type='checkbox']")[i + 1].disabled = true;
                }
            }
        }
    },
    onClickRow: function (rowIndex, rowData) {
        //加载完毕后获取所有的checkbox遍历
        $("input[type='checkbox']").each(function (index, el) {
            //如果当前的复选框不可选,则不让其选中
            if (el.disabled == true) {
                $('#dg').datagrid('unselectRow', index - 1);
            }
        })
    }
});
相关标签: datagrid