When I touch a cell, it enters edit mode (EnableOnActive=true) but keyboard not appears.
Then I touch again and keyboard appears.
Then I type some value and hit enter.
Focus moves to the next cell, it enters edit mode but keyboard not appears.
I have to touch again and keyboard appears.
It works fine in Chrome in Android devices, but in iPad this is happening.
Any suggestion to workaround this?
Hello Edson,
Thank you for contacting us.
As I remember iOS devices had this "focus problem" for some time, and they haven't figure it out yet. Have a look at this answer for more information.
Nevertheless, have you tried to focus the input on EnterEditMode javascript event?
Thanks for the quick response!
Could you please send me a sample code to achieve this?
My recommendation is to use the Grid Designer in order to handle the client event and update the handler to put the focus in the shown input:
I have already did this.
Take a look at code below, it's not working.
I think it's necessary to get the editor reference, not the cell reference.
function WebDG_CellEditing_EnteredEditMode(sender, eventArgs) {
var activeCell = eventArgs.getCell();
activeCell.focus();
}
Hi Edson,
I am currently looking into this and will update you by the end of the day.