inline editing with tab between columns "undoes" values?
inline editing with tab between columns "undoes" values?
Hi all,
in the inline+tab example, try this:
1. click on a field to inline-edit the value
2. change the value to whatever
3. hit TAB
4. the inline editor moves to the next field
5. the previous field "undoes" the change I did in step 2 and now contains the old value before I made the change
How to I make sure that when I hit TAB, the changes I make are not lost?
thanks!
This discussion has been closed.
Answers
Use the
submitOnBlur
option orform-options
. The form options can be specified where you callinline()
.Allan
tried it, did not change anything, same symptoms:
at the moment, I found a solution of calling "editor.submit()' from within the on() method that processes the tab clicks. seems to work for now, we'll see...