ExtJS 4 CellEditing插件和Apply按钮

时间:2012-10-08 08:55:16

标签: extjs4

我有一个带有CellEditing插件的网格。

Ext.define('SCR.view.UserDevice', {

    extend:'Ext.grid.Panel',
    id:'userDevice',
    alias:'widget.userdevice',
    title:"Devices",
    store:'UserDevices',
    sortableColumns:false,
    enableColumnHide:false,
    columns:[
        {
            header:'Device',
            width:200,
            dataIndex:'type'
        },
        {
            header:'Nickname',
            dataIndex:'name',
            width:300,
            editor: {
                xtype: 'textfield',
                allowBlank: false
            }
        },
        {
            header:'Registration Date',
            dataIndex:'registrationDate'
        }
    ],

    plugins: [
        Ext.create('Ext.grid.plugin.CellEditing', {
            clicksToEdit: 1
        })
    ],

    initComponent:function () {
        var me = this;
        me.callParent(arguments);
    }
});

单击“名称”单元格后显示编辑器。是否可以在输入字段后添加“应用”按钮?

0 个答案:

没有答案