Hello, all! I have a NumericStepper bound to my data model. I'd like the model to be updated *while* NumericStepper changes (e.g. while the user clicks and holds the 'up' button) instead of only making the change once the stepper loses focus.
I have a feeling this requires some use of the following format: [Bindable(event="myCustomEvent")] My best guess is that I need to write listeners for the mousedown/mouseup/keydown/keyup events to detect when the user is making changes to the stepper. These listeners will dispatch 'myCustomEvent' which will cause the data model to be updated. Is this the right approach? Thanks! :) -Rich

