allow user to disable the editor per cell
Opened this issue · 2 comments
avp90 commented
allow user to disable the editor per cell
torrobinson commented
It looks like you're thinking of implementing (re: #6 ) with
element.find('td').not('.no-editor').prop('tabindex', 1);
So is the idea that the editor would not be opened when the td
has a .no-editor
class applied to it?
I don't think that would interfere with anything and works - out of curiosity, what was the use case that you needed this for? Were you applying this plugin to a table that already had data in it?
avp90 commented
I use your table, load data and if .no-editor
class is set the editor would not appear and the cursor is the default one.