Changes between Version 4 and Version 5 of Ticket #13341, comment 8
- Timestamp:
- Apr 5, 2012, 11:31:41 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13341, comment 8
v4 v5 6 6 7 7 PS: Need to think about _onBlur() events too though. Ideally clicking the arrows on a focused spinner shouldn't cause an _onBlur() call, since that would make the value reformat from 12345 to 12,345. Or worse yet, an _onBlur() followed after 0ms by another _onFocus(). 8 9 Also consider stuff like iOS where the mousedown, mouseup, and click events all occur together. We wouldn't want an _onFocus() call to occur after the click event, as it might lead to problems like an onclick listener opening a !TooltipDialog and then the Button._onFocus() call immediately closing that !TooltipDialog.