禁用 Flex DateField 组件的用户输入
我在 Flex 中有一个 DateField 组件,我想停止任何用户输入。如果我将可编辑设置为“false”,那么它会阻止用户更改 DateField 框的位。然而,这并不能阻止他们点击旁边的日历图标并更新日期。是否可以禁用此功能?
我基本上希望该组件在某些情况下只能被读取,但不希望它有任何 alpha 覆盖。因此我想使用可编辑而不是启用。
感谢您的帮助 理查德
I have a DateField component in Flex and I want to stop any user input. If I set the editable to "false" then it stops users changed the bits of the DateField box. It does NOT however stop them from clicking on the calendar icon next to it and updating the date. Is it possible to disable this?
I basically want the component to be read only under some circumstances but not for it to have any alpha overlay. Therefore I want to use editable rather than enabled.
Thanks for any help
Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用enabled,然后将样式
disabledColor
设置为0x000000
,将disabledSkin
设置为ScrollArrowSkin
(DateField的默认值) ,上皮肤)You can use enabled, and then set the styles
disabledColor
to0x000000
anddisabledSkin
toScrollArrowSkin
(The default for DateField, upSkin)