4

我有一个简单的案例,我有一个带有附加商店的网格。

有 2 个按钮。一个带有修改所选记录的处理程序。一个带有提交所选记录的处理程序。

当我选择一条记录并推送编辑-> 编辑发生选择(看起来丢失)如果你打电话grid.geSelectionModel().getSelection()你会看到该记录仍然被选中。它只是没有那样显示。

您不能再次选择它,您首先必须选择另一条记录,然后再选择该记录。

其次,当您选择一条记录单击提交按钮时,该值已提交,但选择再次“显示”为丢失。

这是一个错误吗?我怎样才能解决这个问题?我希望它保持选择可见!

这是一个小提琴

这是示例代码:(我使用 Ext 4.1.1)

var cellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
        clicksToEdit: 1
    });

Ext.create('Ext.data.Store', {
    storeId: 'simpsonsStore',
    fields: ['name', 'email', 'phone'],
    data: {
        'items': [{
            'name': 'Lisa',
            "email": "lisa@simpsons.com",
            "phone": "555-111-1224"
        }, {
            'name': 'Bart',
            "email": "bart@simpsons.com",
            "phone": "555-222-1234"
        }, {
            'name': 'Homer',
            "email": "home@simpsons.com",
            "phone": "555-222-1244"
        }, {
            'name': 'Marge',
            "email": "marge@simpsons.com",
            "phone": "555-222-1254"
        }]
    },
    proxy: {
        type: 'memory',
        reader: {
            type: 'json',
            root: 'items'
        }
    }
});

Ext.create('Ext.container.Container', {
    layout: 'fit',
    renderTo: Ext.getBody(),
    items: [{
        xtype: 'grid',
        store: Ext.data.StoreManager.lookup('simpsonsStore'),
        columns: [{
            text: 'Name',
            dataIndex: 'name'
        }, {
            text: 'Email',
            dataIndex: 'email',
            flex: 1
        }, {
            text: 'Phone',
            dataIndex: 'phone'
        }],
        height: 200,
        buttons: [{
            text: 'commit selection',
            handler: function(){
                this.up('grid').getSelectionModel().getSelection()[0].commit();
            }
        },{
            text: 'set selection name to maggy',
            handler: function(){
                this.up('grid').getSelectionModel().getSelection()[0].set('name', 'Maggy');
            }
        }]
    }]
});​

更新:

我在煎茶论坛上报告了它。Mitchel Simoens 告诉我它已在 Ext 4.1.2 中修复。太糟糕了,它是一个“仅限支持订阅者”版本..

更新:

我正在查找问题以尝试修复它。我相信问题出在 onUpdate 方法中的 Ext.view.Table 类中,更准确地说是围绕这段代码:

if (oldRowDom.mergeAttributes) {
    oldRowDom.mergeAttributes(newRow, true);
} else {
    newAttrs = newRow.attributes;
    attLen = newAttrs.length;
    for (i = 0; i < attLen; i++) {
        attName = newAttrs[i].name;
        if (attName !== 'id') {
           oldRowDom.setAttribute(attName, newAttrs[i].value);
        }
    }
}

只留下这段代码是一个坏主意吗?我评论了它似乎现在可以工作了,但它不会破坏其他一些功能吗?http://jsfiddle.net/Vandeplas/YZqch/10/

4

1 回答 1

6

我认为这是一个错误,可能是刷新网格以显示脏位的一部分。在您修改后的小提琴中
,我以一种丑陋的方式规避了这一点:

{
    text: 'set selection name to maggy',
    handler: function(){
        var sel = this.up('grid').getSelectionModel();
        var rec = sel.getSelection()[0];
        rec.set('name', 'Maggy');
        sel.deselectAll();
        sel.select(rec.index);
    }
}

我这样做是为了.set(),但同样可以为commit()

希望这会有所帮助。

于 2012-10-04T14:00:45.857 回答