Class actioncenter.TreeGridCellTypeMgr
actioncenter.TreeGridCellTypeMgr
This object provides a registry of available treegrid cell classes
indexed by a mnemonic code known as the ACTreeGridCell's tgrcelltype.
Defined in: ACTreeGridCell.js.
Constructor Attributes | Constructor Name and Description |
---|---|
Field Attributes | Field Name and Description |
---|---|
<static> |
actioncenter.TreeGridCellTypeMgr.celltypes
The tgrcelltypes that have been registered with the treegrid cell manager.
|
Method Attributes | Method Name and Description |
---|---|
<static> |
actioncenter.TreeGridCellTypeMgr.create(config, defaultType, col, treegrid, config)
Creates a new ACTreeGridCell from the specified config object using the
config object's tgrcelltype to determine the class to instantiate.
|
<static> |
actioncenter.TreeGridCellTypeMgr.isRegistered(tgrcelltype)
Checks if a treegrid cell type is registered.
|
<static> |
actioncenter.TreeGridCellTypeMgr.registerType(tgrcelltype, cstr)
Registers a new ACTreeGridCell constructor, keyed by a new
|
Field Detail
<static>
actioncenter.TreeGridCellTypeMgr.celltypes
The tgrcelltypes that have been registered with the treegrid cell manager.
Method Detail
<static>
{Ext.ux.tree.ACTreeGridCell}
actioncenter.TreeGridCellTypeMgr.create(config, defaultType, col, treegrid, config)
Creates a new ACTreeGridCell from the specified config object using the
config object's tgrcelltype to determine the class to instantiate.
- Parameters:
- {Object} config
- A configuration object for the ACTreeGridCell you wish to create.
- {Constructor} defaultType
- The constructor to provide the default Component type if the config object does not contain a xtype. (Optional if the config contains a xtype).
- col
- treegrid
- config
- Returns:
- {Ext.ux.tree.ACTreeGridCell} The newly instantiated ACTreeGridCell.
<static>
{Boolean}
actioncenter.TreeGridCellTypeMgr.isRegistered(tgrcelltype)
Checks if a treegrid cell type is registered.
- Parameters:
- {String} tgrcelltype
- The mnemonic string by which the ACTreeGridCell class may be looked up
- Returns:
- {Boolean} Whether the type is registered.
<static>
actioncenter.TreeGridCellTypeMgr.registerType(tgrcelltype, cstr)
Registers a new ACTreeGridCell constructor, keyed by a new
- Parameters:
- {String} tgrcelltype
- The mnemonic string by which the ACTreeGridCell class may be looked up.
- {Constructor} cstr
- The new ACTreeGridCell class.