forked from frappe/datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Tropicalrambler edited this page Jul 5, 2019
·
1 revision
Welcome to the datatable wiki!
For easy entry of data:
// Changes behavior to allow editing on any key being pressed over a focused cell
$.on(this.bodyScrollable, 'keydown', '.dt-cell', (e, cell) => {
if (this.$focusedCell && !this.$editingCell) {
this.activateEditing(this.$focusedCell);
}
});