hytest 发表于 2018-4-24 19:56:35

请问t:datagrid的checkbox事件如何使用

有个表格使用t:datagrid,并且设置属性checkbox = true;
想在checkbox选中时作些处理,但不知在t:datagrid下如何设置这个事件,
大家知道如何设置否?谢谢

admin 发表于 2018-4-24 22:38:16

这个得easyui有什么函数

her_so 发表于 2018-4-25 10:09:52

本帖最后由 her_so 于 2018-4-25 10:13 编辑

先开启列编辑

<t:dgCol title="<br>是否<br>变形<br>"field="shapeChange"align="center"extendParams="editor:{type:'checkbox',options:{on:'Y',off:'N'}}" dictionary="sf_yn"width="50" sortable="false" ></t:dgCol>

在使用 easyui onClickRow 函数

$("# dategrid 的name值 ").datagrid({
                                onClickRow: function (index, row) {
                                        $("# dategrid 的name值 ").datagrid('beginEdit', index);
                                        var editors = $('# dategrid 的name值 ').datagrid('getEditors', index);
                                        var shapeChange = editors;        //这个绑定上面 t:dgCol 的字段值

                                        shapeChange.target.bind('blur', function () {        //失去焦点执行

// 你需要执行的操作。。。。。。。。。
                                        });
                                }
                        });
                }
页: [1]
查看完整版本: 请问t:datagrid的checkbox事件如何使用