代码之家  ›  专栏  ›  技术社区  ›  Ferry Kranenburg

Dgrid 0.4和dstore:在没有put请求的情况下更新UI中的行

  •  1
  • Ferry Kranenburg  · 技术社区  · 10 年前

    在Dgrid0.3.16中,我使用了一个Observable存储,当存储中的数据发生更改时,我调用了存储通知函数。(不是“put”,因为我只需要一个UI更新,这是一个特定的情况)

    store.notify(object, existingId);
    

    我现在已经将Dgrid升级到了0.4版,我正在使用“dstore”作为商店。商店的创建方式如下:

            var store = new declare([ Rest, SimpleQuery, Trackable, Cache, TreeStore ])(lang.mixin({
                target:"/ac/api?fetchview",
                idProperty:"$uniqueid", 
                useRangeHeaders: true
            }, config));
    
            store.getRootCollection = function (parent, options) {
                return this.root.filter({parent: parent.$position},options);
            };
    
            store.getChildren = function (parent, options) {
                return this.root.filter({parent: parent.$position},options);
            };
    
            store.mayHaveChildren = function (item) {
                return item.$iscategory;
            };
    
            this.collection = store;
    

    当一行更改而不调用“put”时,如何通知商店?我需要dGrid重新渲染行。

    1 回复  |  直到 10 年前
        1
  •  5
  •   Ken Franqueiro    10 年前

    dstore遵循一个更类似于典型事件驱动方法的模型 on emit 方法。数据存储支架 add , update delete 事件-前两个预期对象具有 target 引用项的属性;这个 删去 事件需要具有 id 引用项标识的属性。

    因此,要通知更新的项目,请致电 store.emit('update', { target: updatedItem }) .

    这个 发出 方法记录在 Store methods ,事件类型在 Collection documentation .