0

下面是一段可执行代码,在网格的编辑器中有一个按钮。我需要按钮出现在编辑器中,但是我不需要更新按钮的任何值。编辑器的更新功能似乎不再起作用。知道我可能会错过什么吗?

Ext.create('Ext.data.Store', {
    storeId:'EmployeeData',
    fields:['name', 'email', 'phone'],
    data: [
        {"name":"aaa", "email":"aaa@emp.com", "phone":"987654321"},
        {"name":"bbb", "email":"bbb@emp.com", "phone":"987654321"},
        {"name":"ccc", "email":"ccc@emp.com", "phone":"987654321"},
        {"name":"ddd", "email":"ddd@emp.com", "phone":"987654321"}
    ]});

var grid = Ext.create('Ext.grid.Panel', {
    title: 'Employee',
    store: Ext.data.StoreManager.lookup('EmployeeData'),
    columns: [
        {header: 'Name',  dataIndex: 'name', editor: 'textfield'},
        {header: 'Email', dataIndex: 'email', flex:1,
            editor: {
                xtype: 'textfield',
                allowBlank: false
            }
        },
        {header: 'Phone', dataIndex: 'phone'},
        {header: 'button', dataIndex:'',editor:{xtype:'button',editable: false}}
    ],
    selType: 'rowmodel',
    plugins: [
        Ext.create('Ext.grid.plugin.RowEditing', {
            clicksToEdit: 1,
            pluginId: 'rowEditing'
        })
    ],
    height: 200,
    width: 400,
    renderTo: Ext.getBody()
});
4

2 回答 2

0

编辑器getValue()在 each 上使用功能x-field,按钮控件没有getValue()功能,因此它抛出异常并且无法更新记录。

ActionColumn如果它可以达到您的目的,也许您可​​以使用。您可以像使用按钮一样附加处理程序函数。

于 2016-03-10T17:13:37.023 回答
0

有点晚了,但我遇到了同样的问题。

您可以添加一种getValue方法以允许更新操作正常运行。

editor: {
    xtype: 'button',
    getValue: function() {
        return true;
    }
}
于 2018-08-10T18:48:55.087 回答