You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I select and change the selected option in SUBMENU(selLabel) I'd like to reflect the current length setting for that label in the length field.
However, when I scroll through the options the length field only ever shows the corresponding value of the option that just lost the focus but not the on that gained focus.
Instead of anyEvent I also tried the more focused masks like focusEvent, ' enterEvent', ' updateEvent` and several combinations.
With anyEvent I also tried a more elaborate callback to see which events may render the desired combination of values
I have this setup
When I select and change the selected option in
SUBMENU(selLabel)
I'd like to reflect the current length setting for that label in thelength
field.However, when I scroll through the options the
length
field only ever shows the corresponding value of the option that just lost the focus but not the on that gained focus.Instead of
anyEvent
I also tried the more focused masks likefocusEvent
, ' enterEvent', ' updateEvent` and several combinations.With
anyEvent
I also tried a more elaborate callback to see which events may render the desired combination of valuesbut none of the events produced the correct combination between the displayed option and the respective index.
Sure, once I exit
SUBMENU(selLabel)
theFIELD(length, ...)
gets updated correctly, but that's not exactly what I want.What am I doing wrong? Or is this not possible at all?
BTW, despite
root.useUpdateEvent = true;
none of myupdateEvent
handlers gets called ever.The text was updated successfully, but these errors were encountered: