Issue is related to IE,
Tested on IE and Chrome
I am using some logic to automatically add a separator on keyboard input for date separator.
Using the real keyboard there is no issue.
With mottie keyboard, the cursor moves back one position before the separator.
I also tried to add the separator with the typing extension....
I also tried kb.caret('end')
The only solution (after trying a lot) was using a jQuery plugin to move cursor to the end.
I implemented it with
$("input").on('focus', function(e){
$(this).putCursorAtEnd();
});
Maybe this helps someone or there is a built in function to overcome this issue
Issue is related to IE,
Tested on IE and Chrome
I am using some logic to automatically add a separator on keyboard input for date separator.
Using the real keyboard there is no issue.
With mottie keyboard, the cursor moves back one position before the separator.
I also tried to add the separator with the typing extension....
I also tried kb.caret('end')
The only solution (after trying a lot) was using a jQuery plugin to move cursor to the end.
I implemented it with
Maybe this helps someone or there is a built in function to overcome this issue