Hi,
My Grid is configured with a Ext.ux.grid.RowEditor plugin..
Is it possible to get a reference to the plugin using the grid reference?
Something like TimesListingGrid.getPlugin()??

Code:
var editor = new Ext.ux.grid.RowEditor_Times_LI({
    saveText: 'Next Step',
    errorSummary: false
});


TimesListingGrid = new Ext.grid.GridPanel({
    id: 'TimesListingGrid',
    store: timesDataStore, // the datastore is defined here
    cm: timesColModel, // the columnmodel is defined here
    clicksToEdit: 1,
    selModel: new Ext.grid.RowSelectionModel({
        singleSelect: true
    }),
    plugins: [editor],
    .....
});

Ext 3.3.1

Thanks.