如何激活flex中的click事件?

发布于 2024-10-02 07:46:43 字数 346 浏览 2 评论 0原文

<mx:StringValidator source="{ host_txt }" property="text" 
            tooShortError="This URI is shorter than the minimum allowed length." 
            minLength="8" trigger="{ connect_btn }" triggerEvent="click"
            valid="setupConnection()"/>

如何手动激活{ connect_btn }点击事件

<mx:StringValidator source="{ host_txt }" property="text" 
            tooShortError="This URI is shorter than the minimum allowed length." 
            minLength="8" trigger="{ connect_btn }" triggerEvent="click"
            valid="setupConnection()"/>

How to activate the click event for { connect_btn } manually?

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

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

发布评论

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

评论(1

心凉 2024-10-09 07:46:43

在此代码中,当 connect_btn 单击时,它开始验证 host_txt 中的文本,如果成功则调用 setupConnection() 所以,据我所知您的问题是,您想在单击按钮时执行其他操作,如果我理解不正确,请纠正我,您可以通过为 click 属性指定一个值来实现这一点,

<mx:Button label="button" id="connect_btn" click="yourMethod()"/>

希望这就是您想要的。

In this code when the connect_btn clicked it starts validating the text in host_txt and if success invokes setupConnection() so, as far as i can understand your question you want to do something else when you click the button please correct me if i understand it incorrectly, you do that by giving a value to the click attribute

<mx:Button label="button" id="connect_btn" click="yourMethod()"/>

hope this is what you want.

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