Class type Ext_AbstractPlugin.configs


class type configs = object .. end
Inherits
method pluginId : Js.js_string Js.t Js.prop

A name for the plugin that can be set at creation time to then retrieve the plugin through getPlugin method. For example:

var grid = Ext.create('Ext.grid.Panel', {
    plugins: [{
        ptype: 'cellediting',
        clicksToEdit: 2,
        pluginId: 'cellplugin'
    }]
});

// later on:
var plugin = grid.getPlugin('cellplugin');