Skip to content
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);
            }
        });
Clone this wiki locally