2

我在 extjs 工作。我有带有网格单元编辑插件的 libraryview -

Ext.define('H.view.library.LibraryListView', {
    extend: 'Ext.grid.Panel',
    alias : 'widget.librarylistview',
    id:'librarylistviewId',
    store: 'LibraryFileStore',
    requires:['RUI.view.campaign.ImageViewer'],
    plugins:[
        Ext.create('Ext.grid.plugin.CellEditing',{
            clicksToEdit: 1,
            listeners: {
                   'edit': function(editor,e) {
                    var me=this; 
                    title = e.value;
                    id = e.record.get('id');
                    }
              }
        })
    ],

我想在 status=0 时禁用此编辑。那么我需要做些什么来根据条件禁用和启用单元格编辑

4

1 回答 1

6

您可以通过在网格上添加 beforeEdit 事件来禁用编辑 -

yourGrid.on('beforeedit',function(editor,e){    
    if(your condition){
        return false;//this will disable the cell editing
    }    
});

您可以获得有关 beforeedit 事件的更多信息以及您可以从这里函数的参数中获得的不同值 -

http://docs.sencha.com/extjs/4.1.0/#!/api/Ext.grid.Panel-event-beforeedit

于 2013-09-12T13:38:22.087 回答