0

是否可以使用带有复选框的数组(而不是数据存储)支持的 Dojo dgrid小部件来选择行?

我成功地从一个基本的数组支持的 dgrid 开始,然后添加了Selection mixin以启用行选择。所以现在我有一个由数组支持并允许行选择的 dgrid。但是,当我尝试通过选择器列插件添加复选框时,出现错误:this.store is undefined.

我确定 this.store 用于识别选择了哪些行:有几个调用 this.store.getIdentity(rowObject) 方法,它与查询网格选择时返回的结果直接相关。

当使用对象数组而不是存储时,是否可以指定某个列字段来标识选定的行?下面我的代码中的 WORKAROUND_STORE 有效地做到了这一点,但也许我错过了一个简单的解决方案,比如设置一些属性,例如:selector({idProperty: 'col1'}).看起来它应该更容易做到。

require(["dgrid/Grid",
         "dgrid/selector",
         "dgrid/Selection",
         "dojo/_base/declare"],
    function(Grid, selector, Selection, declare){

        var columns = {
            col1: selector({}),
            col2: {label: 'COL2'},
            col3: {label: 'COL3'},
        };

        var data = [
            { col1: '1', col2: 'A', col3: 'I'},
            { col1: '2', col2: 'B', col3: 'II'},
            { col1: '3', col2: 'C', col3: 'III'}
        ];

        WORKAROUND_STORE = {
            getIdentity: function(item) { return item.col1 }
        }

        var SelectionGrid = declare([Grid, Selection]);
        window.methodGrid = new SelectionGrid({
            store: WORKAROUND_STORE,
            columns: columns,
            selectionMode: "none",
            allowSelectAll: true
        }, "methodGridDiv");
        window.methodGrid.renderArray(data);
    }
);
4

1 回答 1

4

这就是我最终要做的事情:我将我的数据数组包装在一个 Dojo 内存存储中,它有一个 setData() 方法来接受一个新的数据数组。主要变化:

  • 使用 OnDemandGrid 而不是 Grid
  • 将数据数组包装在 Dojo Memory 存储对象中
  • 更新网格的存储以更新数据数组
  • 调用网格的刷新方法()

完整代码:

require(["dgrid/OnDemandGrid",
         "dgrid/selector",
         "dgrid/Selection",
         "dojo/_base/declare",
         "dojo/store/Memory"],
    function(OnDemandGrid, selector, Selection, declare, Memory){

        var columns = {
            col1: selector({}),
            col2: {label: 'COL2'},
            col3: {label: 'COL3'},
        };

        var data = [
            { col1: '1', col2: 'A', col3: 'I'},
            { col1: '2', col2: 'B', col3: 'II'},
            { col1: '3', col2: 'C', col3: 'III'}
        ];

        var SelectionGrid = declare([OnDemandGrid, Selection]);
        window.methodGrid = new SelectionGrid({
            store: Memory({idProperty: 'methodId'}),
            columns: columns,
            selectionMode: "none",
            allowSelectAll: true
        }, "methodGridDiv");
        window.methodGrid.store.setData(data);
        window.methodGrid.refresh();
    }
);

更新以响应:

你真的在那里得到了复选框吗?我在您的代码片段中看不到这一点。

添加复选框的代码是:col1: selector({}). 或更明确地说:col1: selector({selectorType: 'checkbox'})

请注意,选择器插件是另一个列插件,其工作方式与编辑器插件不同。

于 2012-08-20T06:06:36.157 回答