Hello,
I looked but did not see an example of being able to inline edit and tab to select Columns only?
is that possible or not?
thanks in advanced.
David
The example I posted shows tabbing between selected columns. You would use the keys.columns option to select the desired columns. In the example it has columns: ':not(:first-child)', which keeps from tabbing into the first column:
Answers
Does this example help?
https://editor.datatables.net/examples/inline-editing/tabControl
Kevin
Kevin,
I have looked at that but I would like to combine it with this
https://editor.datatables.net/examples/inline-editing/columns.html
is that possible?
The example I posted shows tabbing between selected columns. You would use the
keys.columns
option to select the desired columns. In the example it hascolumns: ':not(:first-child)',
which keeps from tabbing into the first column:Sounds like you probably want to use the same class for the keys.columns and the selector used here:
Kevin
BOOOM!! Kevin you nailed it!
The end result
keys: {
columns: '.editable',
keys: [ 9 ],
editor: editor,
editOnFocus: true
},
thank you