Editor: Tabbing (KeyTable) between fields using bubble edit?
Editor: Tabbing (KeyTable) between fields using bubble edit?
Is it possible to configure Editor to use bubble editing, and still be able to use tabbing to navigate between fields? Looking to get it working like simple inline editing, but with bubble edit instead.
So, as you press the tab key, the different bubbles pop up, and if they values have changed, then it's submitted on tabbing out of the field.
This discussion has been closed.
Answers
Hi,
This isn't possible with KeyTable like the tabbing example uses as it always uses inline editing. So what would be required is to implement a custom key handler.
Prior to Editor 1.5, the tabbing example used its own code for that - as follows:
KeyTable allows that to be simplified hugely, but for your use case you might want to try the above and change the call from
inline()
tobubble()
.Regards,
Allan