Is there anyway to be able to bind to key events of inline edit input field
Is there anyway to be able to bind to key events of inline edit input field
maeser@gmail.com
Posts: 5Questions: 1Answers: 0
in Editor
Description of problem:
Using the Editor inline edit option.
I want to be able to use my own function to control input into the inline edit input field.
Specifically I'm trying to find a way to be able to bind a keyUp event listener to the dynamically created input field that is created when the user selects the field to be edited.
Thanks,
-mike
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi Mike,
is how to bind a keyup event listener.
field().input()
gives you theinput
element (wrapped by jQuery).Allan
thanks!