I have a grid with all numbers (double) which is editable with
.Editable(editable =>
{
editable.Mode(GridEditMode.InCell);
})
.Navigatable()
At the moment I can use the tab key to edit a complete line of values, but I have to first manually delete the current values (backspace or del, depending on chrome vs firefox).
But I would like to automaticly select the current values in the cell. So the user only has to type the new values
Is this possible?
Maurice