-
-
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.
#6139 table.plugin.CellEditing base class and importing the plugin in…
…to table as needed
- Loading branch information
Showing
3 changed files
with
55 additions
and
1 deletion.
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
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
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,26 @@ | ||
import Base from '../../core/Base.mjs'; | ||
|
||
/** | ||
* @class Neo.table.plugin.CellEditing | ||
* @extends Neo.core.Base | ||
*/ | ||
class CellEditing extends Base { | ||
static config = { | ||
/** | ||
* @member {String} className='Neo.table.plugin.CellEditing' | ||
* @protected | ||
*/ | ||
className: 'Neo.table.plugin.CellEditing' | ||
} | ||
|
||
/** | ||
* @param {Object} config | ||
*/ | ||
construct(config) { | ||
super.construct(config); | ||
|
||
console.log('Neo.table.plugin.CellEditing', this.id); | ||
} | ||
} | ||
|
||
export default Neo.setupClass(CellEditing); |