Flex:验证失败时强制显示控件的错误提示(错误工具提示)
当验证器(即 StringValidator、NumberValidator 等)由于验证失败而调度无效事件时,源控件(即 TextInput)的 errorString 属性将设置为非空字符串,该字符串会在控件周围创建红色边框并显示仅当鼠标悬停在控件上时才出现工具提示(错误提示)。
问题:是否可以强制立即显示工具提示(错误提示),而不是等待用户将鼠标悬停在控件上?如果是这样,怎么办?
When a Validator (i.e. StringValidator, NumberValidator, etc) dispatches an invalid event due to validation failure, the errorString property of the source control (i.e. TextInput) is set to a non-empty string which creates a red border around the control and shows an toolTip (errorTip) ONLY when the mouse hovers over the control.
Question: Can you force immediate display of the toolTip (errorTip) rather than waiting for the user to hover over the control? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
zdmytriv 的答案中链接的 Aral Balkan 的文章值得一读,并提倡为用户提供更好的整体验证交互。
如果您只是想“强制”弹出错误提示,我会这样做:
Aral Balkan's article linked in zdmytriv's answer is good reading and advocates a better overall validation interaction for the user.
If you just want to "force" the errorTip to pop up, here's what I do:
检查此Flex 中更好的表单验证
Check this Better form validation in Flex