Skip to content

Commit

Permalink
#6168 grid.plugin.CellEditing: base class
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiu committed Dec 19, 2024
1 parent bd1420c commit dd1c4c2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/grid/plugin/CellEditing.mjs
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);

0 comments on commit dd1c4c2

Please sign in to comment.