
|
If you were logged in you would be able to see more operations.
|
|
|
Flex SDK
Created: 06/11/07 04:47 PM
Updated: 01/22/08 11:48 AM
|
|
| Component/s: |
Validators
|
|
Security Level:
|
Public
(All JIRA Users
)
|
|
|
File Attachments:
|
None
|
|
Image Attachments:
|
|
|
| Severity: |
Cosmetic Issue/Spelling Error
|
| Reproducibility: |
Intermittent
|
| Discoverability: |
Medium
|
| Found in Version: |
SDK Moxie M2 (Beta)
|
| Affected OS(s): |
Windows
- XP
|
| Steps to Reproduce: |
When a user is filling out a form and they do it incorrectly the border of the component becomes red. But you only see the Error Message Tooltip if you hold the mouse over the component. What would be nice is to have an option in the Validators to show the Error message tooltip immediately when the user focuses on the component. For example, if they tab to a new component the error message does not show up.
Steps to reproduce:
1. Add validator to component and run application
2. Tab away from component without entering required value
3. Tab back to the component (and show the Error Tooltip immediately)
Actual Results:
Does not show tooltip unless user hovers mouse over the component field for a specified length of time.
Expected Results:
Expects the Error tooltip to show immediately upon focus of component (when component has error borders already around it).
Workaround (if any):
Dispatch MouseOver event manually on component will show the Error message.
When a user is filling out a form and they do it incorrectly the border of the component becomes red. But you only see the Error Message Tooltip if you hold the mouse over the component. What would be nice is to have an option in the Validators to show the Error message tooltip immediately when the user focuses on the component. For example, if they tab to a new component the error message does not show up.
Steps to reproduce:
1. Add validator to component and run application
2. Tab away from component without entering required value
3. Tab back to the component (and show the Error Tooltip immediately)
Actual Results:
Does not show tooltip unless user hovers mouse over the component field for a specified length of time.
Expected Results:
Expects the Error tooltip to show immediately upon focus of component (when component has error borders already around it).
Workaround (if any):
Dispatch MouseOver event manually on component will show the Error message.
|
| Language Found: |
English
|
| Bugbase Id: |
none
|
| QA Owner: |
Kishan Venkataramana
|
| Resolved by: |
Lauren Park
|
| Participants: |
Aral Balkan, boobie star, Kishan Venkataramana, Lauren Park and ronzoni
|
|
All
|
Comments
|
|
Sort Order:
|
|
For me, after quite some time, I realized I can do it, but with my form I have to do both:
e.currentTarget.dispatchEvent(new MouseEvent(MouseEvent.MOUSE_OUT));
e.currentTarget.dispatchEvent(new MouseEvent(MouseEvent.MOUSE_OVER));
I call those when doing a focusOut event from my TextInput.
Not sure why the MouseEvent.MOUSE_OUT is required, but when I remove it, it doesn't work....