如何在 Flex 4 中为 DateField 控件添加水印?

发布于 2024-12-13 15:18:33 字数 141 浏览 0 评论 0原文

我想知道如何制作带有水印的 DateField 控件。我想从 MXML 设置提示/水印文本,如下所示:

<mx:DateField id="id_date" propmt="Select date" />

I would like to know how to make a DateField control with a watermark. I want to set the prompt/watermark text from MXML like this one:

<mx:DateField id="id_date" propmt="Select date" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情深如许 2024-12-20 15:18:33

使用这个

<mx:DateField id="df" text="Select Date"  focusIn="df.text=''" />


请参阅此博客了解自定义日期字段组件
WaterMarkDateField

Use this

<mx:DateField id="df" text="Select Date"  focusIn="df.text=''" />

OR
Refer This Blog for custom datefield component
WaterMarkDateField

葬心 2024-12-20 15:18:33

它非常简单,通过使用创建完成处理程序

<mx:DateField id="sample" creationComplete="sample_creationCompleteHandler(event)"/>

设置示例文本,如下所示

protected function sample_creationCompleteHandler(event:FlexEvent):void
{
    // TODO Auto-generated method stub
    sample.text = "Select Date";
}

尝试这个..

Its Quite Simple by using the creation complete handler

<mx:DateField id="sample" creationComplete="sample_creationCompleteHandler(event)"/>

set the sample text like this

protected function sample_creationCompleteHandler(event:FlexEvent):void
{
    // TODO Auto-generated method stub
    sample.text = "Select Date";
}

Try this..

乖乖 2024-12-20 15:18:33

我已经按照以下方式做了。不知道这个方法正确与否。但是,它对我有用。

<mx:DateField id="dateIdentify" editable="true" selectedDate="new Date()" formatString="MM-DD-YYYY" color="#505050" focusOut="if(dateIdentify.text == ''){dateIdentify.text='MM-DD-YYYY'}" focusIn="if(dateIdentify.text == '' || dateIdentify.text == 'MM-DD-YYYY'){dateIdentify.text='';}" text="MM-DD-YYYY"/>

希望它能帮助某人。

I have done like following way. Don't know it's correct way or not. But, it's working for me.

<mx:DateField id="dateIdentify" editable="true" selectedDate="new Date()" formatString="MM-DD-YYYY" color="#505050" focusOut="if(dateIdentify.text == ''){dateIdentify.text='MM-DD-YYYY'}" focusIn="if(dateIdentify.text == '' || dateIdentify.text == 'MM-DD-YYYY'){dateIdentify.text='';}" text="MM-DD-YYYY"/>

Hope it helps someone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文