-
-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#6168 grid.plugin.CellEditing: base class
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import BaseCellEditing from '../../table/plugin/CellEditing.mjs'; | ||
|
||
/** | ||
* @class Neo.grid.plugin.CellEditing | ||
* @extends Neo.table.plugin.CellEditing | ||
*/ | ||
class CellEditing extends BaseCellEditing { | ||
static config = { | ||
/** | ||
* @member {String} className='Neo.grid.plugin.CellEditing' | ||
* @protected | ||
*/ | ||
className: 'Neo.grid.plugin.CellEditing', | ||
/** | ||
* @member {String} ntype='plugin-grid-cell-editing' | ||
* @protected | ||
*/ | ||
ntype: 'plugin-grid-cell-editing', | ||
/** | ||
* @member {String} cellCls='neo-grid-cell' | ||
*/ | ||
cellCls: 'neo-grid-cell', | ||
/** | ||
* @member {String[]} editorCls=['neo-grid-editor'] | ||
*/ | ||
editorCls: ['neo-grid-editor'] | ||
} | ||
} | ||
|
||
export default Neo.setupClass(CellEditing); |