-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathdataTables.keyTable.js
More file actions
1384 lines (1161 loc) · 32.8 KB
/
dataTables.keyTable.js
File metadata and controls
1384 lines (1161 loc) · 32.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*! KeyTable 2.12.2
* © SpryMedia Ltd - datatables.net/license
*/
/**
* @summary KeyTable
* @description Spreadsheet like keyboard navigation for DataTables
* @version 2.12.2
* @file dataTables.keyTable.js
* @author SpryMedia Ltd
* @contact datatables.net
* @copyright Copyright SpryMedia Ltd.
*
* This source file is free software, available under the following license:
* MIT license - http://datatables.net/license/mit
*
* This source file is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
*
* For details please refer to: http://www.datatables.net
*/
var namespaceCounter = 0;
var editorNamespaceCounter = 0;
var KeyTable = function (dt, opts) {
// Sanity check that we are using DataTables 1.10 or newer
if (!DataTable.versionCheck || !DataTable.versionCheck('1.10.8')) {
throw 'KeyTable requires DataTables 1.10.8 or newer';
}
// User and defaults configuration object
this.c = $.extend(true, {}, DataTable.defaults.keyTable, KeyTable.defaults, opts);
// Internal settings
this.s = {
/** @type {DataTable.Api} DataTables' API instance */
dt: new DataTable.Api(dt),
/** Indicate when the DataTable is redrawing - take no action on key presses */
dtDrawing: false,
enable: true,
/** @type {bool} Flag for if a draw is triggered by focus */
focusDraw: false,
/** @type {bool} Flag to indicate when waiting for a draw to happen.
* Will ignore key presses at this point
*/
waitingForDraw: false,
/** @type {object} Information about the last cell that was focused */
lastFocus: null,
/** @type {string} Unique namespace per instance */
namespace: '.keyTable-' + namespaceCounter++,
/** @type {Node} Input element for tabbing into the table */
tabInput: null
};
// DOM items
this.dom = {};
// Check if row reorder has already been initialised on this table
var settings = this.s.dt.settings()[0];
var exisiting = settings.keytable;
if (exisiting) {
return exisiting;
}
settings.keytable = this;
this._constructor();
};
$.extend(KeyTable.prototype, {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* API methods for DataTables API interface
*/
/**
* Blur the table's cell focus
*/
blur: function () {
this._blur();
},
/**
* Enable cell focus for the table
*
* @param {string} state Can be `true`, `false` or `-string navigation-only`
*/
enable: function (state) {
this.s.enable = state;
},
/**
* Get enable status
*/
enabled: function () {
return this.s.enable;
},
/**
* Focus on a cell
* @param {integer} row Row index
* @param {integer} column Column index
*/
focus: function (row, column) {
this._focus(this.s.dt.cell(row, column));
},
/**
* Is the cell focused
* @param {object} cell Cell index to check
* @returns {boolean} true if focused, false otherwise
*/
focused: function (cell) {
var lastFocus = this.s.lastFocus;
if (!lastFocus) {
return false;
}
var lastIdx = this.s.lastFocus.cell.index();
return cell.row === lastIdx.row && cell.column === lastIdx.column;
},
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Constructor
*/
/**
* Initialise the KeyTable instance
*
* @private
*/
_constructor: function () {
this._tabInput();
var that = this;
var dt = this.s.dt;
var table = $(dt.table().node());
var namespace = this.s.namespace;
var editorBlock = false;
// Need to be able to calculate the cell positions relative to the table
if (table.css('position') === 'static') {
table.css('position', 'relative');
}
// Click to focus
$(dt.table().body()).on('click' + namespace, 'th, td', function (e) {
if (that.s.enable === false) {
return;
}
var cell = dt.cell(this);
if (!cell.any()) {
return;
}
that._focus(cell, null, false, e);
});
// Key events
$(document).on('keydown' + namespace, function (e) {
if (!editorBlock && !that.s.dtDrawing) {
that._key(e);
}
else {
e.preventDefault();
}
});
// Click blur
if (this.c.blurable) {
$(document).on('mousedown' + namespace, function (e) {
// Click on the search input will blur focus
if ($(e.target).parents('.dataTables_filter, .dt-search').length) {
that._blur();
}
// If the click was inside the DataTables container, don't blur
if ($(e.target).parents().filter(dt.table().container()).length) {
return;
}
// Don't blur in Editor form
if ($(e.target).parents('div.DTE').length) {
return;
}
// Or an Editor date input
if (
$(e.target).parents('div.editor-datetime').length ||
$(e.target).parents('div.dt-datetime').length
) {
return;
}
// Or an Editor dropdown
if ($(e.target).parents('div.dte-dropdown').length) {
return;
}
//If the click was inside the fixed columns container, don't blur
if ($(e.target).parents().filter('.DTFC_Cloned').length) {
return;
}
that._blur();
});
}
if (this.c.editor) {
var editor = this.c.editor;
// Need to disable KeyTable when the main editor is shown
editor.on('open.keyTableMain', function (e, mode, action) {
if (mode !== 'inline' && that.s.enable) {
that.enable(false);
editor.one('close' + namespace, function () {
that.enable(true);
});
}
});
if (this.c.editOnFocus) {
dt.on(
'key-focus' + namespace + ' key-refocus' + namespace,
function (e, dt, cell, orig) {
that._editor(null, orig, true);
}
);
}
// Activate Editor when a key is pressed (will be ignored, if
// already active).
dt.on('key' + namespace, function (e, dt, key, cell, orig) {
that._editor(key, orig, false);
});
// Active editing on double click - it will already have focus from
// the click event handler above
$(dt.table().body()).on('dblclick' + namespace, 'th, td', function (e) {
if (that.s.enable === false) {
return;
}
var cell = dt.cell(this);
if (!cell.any()) {
return;
}
if (that.s.lastFocus && this !== that.s.lastFocus.cell.node()) {
return;
}
that._editor(null, e, true);
});
// While Editor is busy processing, we don't want to process any key events
editor
.on('preSubmit', function () {
editorBlock = true;
})
.on('preSubmitCancelled', function () {
editorBlock = false;
})
.on('submitComplete', function () {
editorBlock = false;
});
}
// Stave saving
// if ( dt.settings()[0].oFeatures.bStateSave ) {
dt.on('stateSaveParams' + namespace, function (e, s, d) {
d.keyTable = that.s.lastFocus ? that.s.lastFocus.cell.index() : null;
});
// }
dt.on('column-visibility' + namespace, function (e) {
that._tabInput();
});
dt.on('column-reorder' + namespace, function (e, s, d) {
// Need to update the last focus cell's index
var lastFocus = that.s.lastFocus;
if (lastFocus && lastFocus.cell) {
var curr = lastFocus.relative.column;
// Manipulate the API instance to correct the column index
lastFocus.cell[0][0].column = d.mapping.indexOf(curr);
lastFocus.relative.column = d.mapping.indexOf(curr);
}
});
// When the table is about to do a draw we need to block key
// handling. This is only important for async draws - i.e.
// server-side processing.
dt.on('preDraw' + namespace + ' scroller-will-draw' + namespace, function (e) {
that.s.dtDrawing = true;
});
// Redraw - retain focus on the current cell
dt.on('draw' + namespace, function (e) {
that.s.dtDrawing = false;
that._tabInput();
if (that.s.focusDraw) {
return;
}
var lastFocus = that.s.lastFocus;
if (lastFocus) {
var relative = that.s.lastFocus.relative;
var info = dt.page.info();
var row = relative.row;
if (info.recordsDisplay === 0) {
return;
}
// If the refocus is outside the current draw zone -
// don't attempt to refocus onto it
if (row < info.start || row > info.start + info.length) {
return;
}
// Reverse if needed
if (row >= info.recordsDisplay) {
row = info.recordsDisplay - 1;
}
that._focus(row, relative.column, true, e);
}
});
// Clipboard support
if (this.c.clipboard) {
this._clipboard();
}
dt.on('destroy' + namespace, function () {
that._blur(true);
// Event tidy up
dt.off(namespace);
$(dt.table().body())
.off('click' + namespace, 'th, td')
.off('dblclick' + namespace, 'th, td');
$(document)
.off('mousedown' + namespace)
.off('keydown' + namespace)
.off('copy' + namespace)
.off('paste' + namespace);
});
// Initial focus comes from state or options
var state = dt.state.loaded();
if (state && state.keyTable) {
// Wait until init is done
dt.one('init', function () {
var cell = dt.cell(state.keyTable);
// Ensure that the saved cell still exists
if (cell.any()) {
cell.focus();
}
});
}
else if (this.c.focus) {
dt.cell(this.c.focus).focus();
}
},
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Private methods
*/
/**
* Blur the control
*
* @param {boolean} [noEvents=false] Don't trigger updates / events (for destroying)
* @private
*/
_blur: function (noEvents) {
if (!this.s.enable || !this.s.lastFocus) {
return;
}
var cell = this.s.lastFocus.cell;
$(cell.node()).removeClass(this.c.className);
this.s.lastFocus = null;
if (!noEvents) {
this._updateFixedColumns(cell.index().column);
this._emitEvent('key-blur', [this.s.dt, cell]);
}
},
/**
* Clipboard interaction handlers
*
* @private
*/
_clipboard: function () {
var dt = this.s.dt;
var that = this;
var namespace = this.s.namespace;
var opts = this.c.clipboard;
// IE8 doesn't support getting selected text
if (!window.getSelection) {
return;
}
if (opts === true || opts.copy) {
$(document).on('copy' + namespace, function (ejq) {
var e = ejq.originalEvent;
var selection = window.getSelection().toString();
var focused = that.s.lastFocus;
// Only copy cell text to clipboard if there is no other selection
// and there is a focused cell
if (!selection && focused) {
e.clipboardData.setData(
'text/plain',
focused.cell.render(that.c.clipboardOrthogonal)
);
e.preventDefault();
}
});
}
if (opts === true || opts.paste) {
$(document).on('paste' + namespace, function (ejq) {
var e = ejq.originalEvent;
var focused = that.s.lastFocus;
var activeEl = document.activeElement;
var editor = that.c.editor;
var pastedText;
if (focused && (!activeEl || activeEl.nodeName.toLowerCase() === 'body')) {
e.preventDefault();
if (window.clipboardData && window.clipboardData.getData) {
// IE
pastedText = window.clipboardData.getData('Text');
}
else if (e.clipboardData && e.clipboardData.getData) {
// Everything else
pastedText = e.clipboardData.getData('text/plain');
}
if (editor) {
// Got Editor - need to activate inline editing,
// set the value and submit
var options = that._inlineOptions(focused.cell.index());
editor
.inline(options.cell, options.field, options.options)
.set(editor.displayed()[0], pastedText)
.submit();
}
else {
// No editor, so just dump the data in
focused.cell.data(pastedText);
dt.draw(false);
}
}
});
}
},
/**
* Get an array of the column indexes that KeyTable can operate on. This
* is a merge of the user supplied columns and the visible columns.
*
* @private
*/
_columns: function () {
var dt = this.s.dt;
var user = dt.columns(this.c.columns).indexes();
var out = [];
dt.columns(':visible').every(function (i) {
if (user.indexOf(i) !== -1) {
out.push(i);
}
});
return out;
},
/**
* Perform excel like navigation for Editor by triggering an edit on key
* press
*
* @param {integer} key Key code for the pressed key
* @param {object} orig Original event
* @private
*/
_editor: function (key, orig, hardEdit) {
// If nothing focused, we can't take any action
if (!this.s.lastFocus) {
return;
}
// DataTables draw event
if (orig && orig.type === 'draw') {
return;
}
var that = this;
var dt = this.s.dt;
var editor = this.c.editor;
var editCell = this.s.lastFocus.cell;
var namespace = this.s.namespace + 'e' + editorNamespaceCounter++;
// Do nothing if there is already an inline edit in this cell
if ($('div.DTE', editCell.node()).length) {
return;
}
// Don't activate Editor on control key presses
if (
key !== null &&
((key >= 0x00 && key <= 0x09) ||
key === 0x0b ||
key === 0x0c ||
(key >= 0x0e && key <= 0x1f) ||
(key >= 0x70 && key <= 0x7b) ||
(key >= 0x7f && key <= 0x9f))
) {
return;
}
if (orig) {
orig.stopPropagation();
// Return key should do nothing - for textareas it would empty the
// contents
if (key === 13) {
orig.preventDefault();
}
}
var editInline = function () {
var options = that._inlineOptions(editCell.index());
editor
.one('open' + namespace, function () {
// Remove cancel open
editor.off('cancelOpen' + namespace);
// Excel style - select all text
if (!hardEdit) {
$(
'div.DTE_Field_InputControl input, div.DTE_Field_InputControl textarea'
).select();
}
// Reduce the keys the Keys listens for
dt.keys.enable(hardEdit ? 'tab-only' : 'navigation-only');
// On blur of the navigation submit
dt.on('key-blur.editor', function (e, dt, cell) {
// When Editor has its own blur enabled - do nothing here
if (editor.s.editOpts.onBlur === 'submit') {
return;
}
if (editor.displayed() && cell.node() === editCell.node()) {
editor.submit();
}
});
// Highlight the cell a different colour on full edit
if (hardEdit) {
$(dt.table().container()).addClass('dtk-focus-alt');
}
// If the dev cancels the submit, we need to return focus
editor.on('preSubmitCancelled' + namespace, function () {
setTimeout(function () {
that._focus(editCell, null, false);
}, 50);
});
editor.on('submitUnsuccessful' + namespace, function () {
that._focus(editCell, null, false);
});
// Restore full key navigation on close
editor.one('close' + namespace, function () {
dt.keys.enable(true);
dt.off('key-blur.editor');
editor.off(namespace);
$(dt.table().container()).removeClass('dtk-focus-alt');
if (that.s.returnSubmit) {
that.s.returnSubmit = false;
that._emitEvent('key-return-submit', [dt, editCell]);
}
});
})
.one('cancelOpen' + namespace, function () {
// `preOpen` can cancel the display of the form, so it
// might be that the open event handler isn't needed
editor.off(namespace);
})
.inline(options.cell, options.field, options.options);
};
// Editor 1.7 listens for `return` on keyup, so if return is the trigger
// key, we need to wait for `keyup` otherwise Editor would just submit
// the content triggered by this keypress.
if (key === 13) {
hardEdit = true;
$(document).one('keyup', function () {
// immediately removed
editInline();
});
}
else {
editInline();
}
},
_inlineOptions: function (cellIdx) {
if (this.c.editorOptions) {
return this.c.editorOptions(cellIdx);
}
return {
cell: cellIdx,
field: undefined,
options: undefined
};
},
/**
* Emit an event on the DataTable for listeners
*
* @param {string} name Event name
* @param {array} args Event arguments
* @private
*/
_emitEvent: function (name, args) {
return this.s.dt.iterator('table', function (ctx, i) {
return $(ctx.nTable).triggerHandler(name, args);
});
},
/**
* Focus on a particular cell, shifting the table's paging if required
*
* @param {DataTables.Api|integer} row Can be given as an API instance that
* contains the cell to focus or as an integer. As the latter it is the
* visible row index (from the whole data set) - NOT the data index
* @param {integer} [column] Not required if a cell is given as the first
* parameter. Otherwise this is the column data index for the cell to
* focus on
* @param {boolean} [shift=true] Should the viewport be moved to show cell
* @private
*/
_focus: function (row, column, shift, originalEvent) {
var that = this;
var dt = this.s.dt;
var pageInfo = dt.page.info();
var lastFocus = this.s.lastFocus;
if (!originalEvent) {
originalEvent = null;
}
if (!this.s.enable) {
return;
}
if (typeof row !== 'number') {
// Its an API instance - check that there is actually a row
if (!row.any()) {
return;
}
// Convert the cell to a row and column
var index = row.index();
column = index.column;
row = dt.rows({ filter: 'applied', order: 'applied' }).indexes().indexOf(index.row);
// Don't focus rows that were filtered out.
if (row < 0) {
return;
}
// For server-side processing normalise the row by adding the start
// point, since `rows().indexes()` includes only rows that are
// available at the client-side
if (pageInfo.serverSide) {
row += pageInfo.start;
}
}
// Is the row on the current page? If not, we need to redraw to show the
// page
if (
pageInfo.length !== -1 &&
(row < pageInfo.start || row >= pageInfo.start + pageInfo.length)
) {
this.s.focusDraw = true;
this.s.waitingForDraw = true;
dt.one('draw', function () {
that.s.focusDraw = false;
that.s.waitingForDraw = false;
that._focus(row, column, undefined, originalEvent);
})
.page(Math.floor(row / pageInfo.length))
.draw(false);
return;
}
// In the available columns?
if ($.inArray(column, this._columns()) === -1) {
return;
}
// De-normalise the server-side processing row, so we select the row
// in its displayed position
if (pageInfo.serverSide) {
row -= pageInfo.start;
}
// Get the cell from the current position - ignoring any cells which might
// not have been rendered (therefore can't use `:eq()` selector).
var cells = dt.cells(null, column, { search: 'applied', order: 'applied' }).flatten();
var cell = dt.cell(cells[row]);
// Prefocus check - this event allows a focus action to be disallowed.
var preFocus = this._emitEvent('key-prefocus', [this.s.dt, cell, originalEvent || null]);
if (preFocus.indexOf(false) !== -1) {
return;
}
if (lastFocus) {
// Don't trigger a refocus on the same cell
if (lastFocus.node === cell.node()) {
this._emitEvent('key-refocus', [this.s.dt, cell, originalEvent || null]);
return;
}
// Otherwise blur the old focus
this._blur();
}
// Clear focus from other tables
this._removeOtherFocus();
var node = $(cell.node());
node.addClass(this.c.className);
this._updateFixedColumns(column);
// Shift viewpoint and page to make cell visible
if (shift === undefined || shift === true) {
this._scroll($(window), $(document.body), node, 'offset');
var bodyParent = dt.table().body().parentNode;
if (bodyParent !== dt.table().header().parentNode) {
var parent = $(bodyParent.parentNode);
this._scroll(parent, parent, node, 'position');
}
}
// Event and finish
var info = dt.page.info();
this.s.lastFocus = {
cell: cell,
node: cell.node(),
relative: {
row: info.start + dt.rows({ page: 'current' }).indexes().indexOf(cell.index().row),
column: cell.index().column
}
};
this._emitEvent('key-focus', [this.s.dt, cell, originalEvent || null]);
dt.state.save();
},
/**
* Handle key press
*
* @param {object} e Event
* @private
*/
_key: function (e) {
// If we are waiting for a draw to happen from another key event, then
// do nothing for this new key press.
if (this.s.waitingForDraw) {
e.preventDefault();
return;
}
// Ignore key presses in an Editor inline create row - it is not navigatable
// by KeyTable
if ($(e.target).closest('.dte-inlineAdd').length) {
return;
}
var enable = this.s.enable;
this.s.returnSubmit =
(enable === 'navigation-only' || enable === 'tab-only') && e.keyCode === 13
? true
: false;
var navEnable = enable === true || enable === 'navigation-only';
if (!enable) {
return;
}
if ((e.keyCode === 0 || e.ctrlKey || e.metaKey || e.altKey) && !(e.ctrlKey && e.altKey)) {
return;
}
// If not focused, then there is no key action to take
var lastFocus = this.s.lastFocus;
if (!lastFocus) {
return;
}
// And the last focus still exists!
if (!this.s.dt.cell(lastFocus.node).any()) {
this.s.lastFocus = null;
return;
}
var that = this;
var dt = this.s.dt;
var scrolling = this.s.dt.settings()[0].oScroll.sY ? true : false;
// If we are not listening for this key, do nothing
if (this.c.keys && $.inArray(e.keyCode, this.c.keys) === -1) {
return;
}
switch (e.keyCode) {
case 9: // tab
// `enable` can be tab-only
e.preventDefault();
this._keyAction(function () {
that._shift(e, e.shiftKey ? 'left' : 'right', true);
});
break;
case 27: // esc
// If there is an inline edit in the cell, let it blur first,
// a second escape will then blur keytable
if ($(lastFocus.node).find('div.DTE').length) {
return;
}
if (this.c.blurable && enable === true) {
this._blur();
}
break;
case 33: // page up (previous page)
case 34: // page down (next page)
if (navEnable && !scrolling) {
e.preventDefault();
this._keyAction(function () {
dt.page(e.keyCode === 33 ? 'previous' : 'next').draw(false);
});
}
break;
case 35: // end (end of current page)
case 36: // home (start of current page)
if (navEnable) {
e.preventDefault();
this._keyAction(function () {
var indexes = dt.cells({ page: 'current' }).indexes();
var colIndexes = that._columns();
that._focus(
dt.cell(indexes[e.keyCode === 35 ? indexes.length - 1 : colIndexes[0]]),
null,
true,
e
);
});
}
break;
case 37: // left arrow
if (navEnable) {
this._keyAction(function () {
that._shift(e, 'left');
});
}
break;
case 38: // up arrow
if (navEnable) {
this._keyAction(function () {
that._shift(e, 'up');
});
}
break;
case 39: // right arrow
if (navEnable) {
this._keyAction(function () {
that._shift(e, 'right');
});
}
break;
case 40: // down arrow
if (navEnable) {
this._keyAction(function () {
that._shift(e, 'down');
});
}
break;
case 113: // F2 - Excel like hard edit
if (this.c.editor) {
this._editor(null, e, true);
break;
}
// else fallthrough
default:
// Everything else - pass through only when fully enabled
if (enable === true) {
this._emitEvent('key', [dt, e.keyCode, this.s.lastFocus.cell, e]);
}
break;
}
},
/**
* Whether we perform a key shift action immediately or not depends
* upon if Editor is being used. If it is, then we wait until it
* completes its action
* @param {*} action Function to trigger when ready
*/
_keyAction: function (action) {
var editor = this.c.editor;
if (editor && editor.mode() && editor.display()) {
editor.submit(action);
}
else {
action();
}
},
/**
* Remove focus from all tables other than this one
*/
_removeOtherFocus: function () {
var thisTable = this.s.dt.table().node();
$.fn.dataTable.tables({ api: true }).iterator('table', function (settings) {
if (this.table().node() !== thisTable) {
this.cell.blur();
}
});
},
/**
* Scroll a container to make a cell visible in it. This can be used for
* both DataTables scrolling and native window scrolling.
*
* @param {jQuery} container Scrolling container