Excel like feel, instead of selecting the entire input form, put cursor in at the start

Excel like feel, instead of selecting the entire input form, put cursor in at the start

BusterenBusteren Posts: 52Questions: 17Answers: 4

Hey, so I have the following code below that makes the editor feels like Excel:
exEditor.on("open",function () { exTable.keys.disable();}).on("close", function () {exTable.keys.enable();});
So when i use ENTER on a cell, it selects the entire input format, not places the cursor, so the above won't work. So my question is, how can you get the cursor inside it?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,467Questions: 1Answers: 10,466 Site admin
    Answer ✓

    You can use the keys.editAutoSelect option to control if the text in the input is auto selected or not.

    Allan

This discussion has been closed.