-
-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Caret always on last word #19
Comments
- Bug fixed wrong input variable - Patch to kioskboard-aio.js
Hi @dhinugraha Unfortunately, you have to click the exact selection index that you wanted for each time on the inputs. Otherwise, the next value that you have pressed will be added to the end automatically. I couldn't find a proper solution for this situation that will be worked with all browsers. (Any help is welcomed.) Thanks. |
Hi @dhinugraha I created a solution and I will implement it asap. Thanks, |
Fixed: The dispatcher issue on the input change event has been fixed: ([#11](#11)) Fixed: The current text selection issue has been fixed: ([#19](#19)) Added: The `max` and `maxlength` attribute controls have been added: ([#17](#17)) Added: The `options` parameter has been added to the `Run()` function to set the initialize options. => `KioskBoard.Run(selector, options);` Changed: The `selector` parameter has been changed to `selectorOrElement` that also can use an element instead of the query selector. => `KioskBoard.Run(selectorOrElement);` Changed: The `Merge()` function has been deprecated. Changed: Code Review.
Hi @dhinugraha The issue has been fixed (v1.4.0) Thanks, |
Hi,
Let say I have initial value in input text : 'ABC DEF'
then I want to insert 123 between C and D.
It must to be : 'ABC123 DEF'
But when I type 123, VK always produce : 'ABC1 DEF23'
config :
The text was updated successfully, but these errors were encountered: