Onscreen Keypad - inline editing
Onscreen Keypad - inline editing
Freedy
Posts: 33Questions: 5Answers: 0
Hi,
Is there a way to get a onscreen keypad to work with inline editing?
Thanks,
Thomas
This discussion has been closed.
Replies
When the text field gains focus, the on screen keyboard should appear. What OS, version and browser are you using?
Thanks,
Allan
I'm using jQuery.NumPad on a Android 6 tablet to replace the default
keyboard.
You'd need to trigger the Javascript keyboard to display when the input element gains focus.
field().input()
is how to get the input element.Allan
Thanks!
How do I get the editor.inline to receive this value?
found it.
I'm using editor.field( 'numcompleted' ).val( value ); to update the cell but the value
isn't being registered unless I press enter. How can I do a enter event?
Thanks.
field().val()
is all you need to set a field's value in Editor. I don't understand what you mean by "registered"? Do you have an external event listening for it?Allan