I'm implementing a grid panel with the four last columns editable for most of the rows. The problem is that I'd like to be able to disable editing on, let's say the first one if record.get('status') = 4 which is finalized and only two of the columns should be editable.

Is there a way to disable showing the edit for those rows? I can do it using CellEditing but want to keep using the RowEditing plugin.

Regards, Kristian

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Use beforeedit event:

grid.on('beforeedit', function(editor, e) {
  if (e.colIdx === 0 && e.record.get('status') == 4)
    return false;
});

UPDATE
The solution above is not working for rowEditor.
However you can make needed field to be disabled on beforeedit. To do that you should be able to access rowediting plugin. Assign pluginId to plugin:

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

Now just disable needed field if some conditions are met:

grid.on('beforeedit', function(e) {
    if (e.record.get('status') == 4)
        grid.getPlugin('rowEditing').editor.form.findField('neededColumnDataIndex').disable();
    else
        grid.getPlugin('rowEditing').editor.form.findField('neededColumnDataIndex').enable();
});

Here is demo (try to edit first row).

link|improve this answer
Yes, that would work for the CellEditing. For the RowEditing it will only trigger beforeedit once per row and not per column. – Asken Oct 7 '11 at 6:05
@Asken, you are right. Updated my answer. – Molecular Man Oct 7 '11 at 6:34
Brilliant! Worked like a charm. Tried to the a hold of the form field but I missed the findField-function. Thanks! – Asken Oct 7 '11 at 6:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.