I am using inline editor and keyTable. When tabbing to a new column, I want to highlight (select) the value. The default action is putting the cursor at the end of the value, as in your inline editor tab between columns example. Thanks .
I've been back on forth on this one a little bit - it seems some people like it, some don't. I had actually thought there was an option for it, but I'm not seeing it, however it can be done with a couple of lines of Javascript:
editor.on('open', function () {
$('#example div.DTE input').select();
});
Answers
I've been back on forth on this one a little bit - it seems some people like it, some don't. I had actually thought there was an option for it, but I'm not seeing it, however it can be done with a couple of lines of Javascript:
Example: http://live.datatables.net/jorutoji/12/edit .
Allan
I like it! Thanks