<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()"/>
如何手动激活click event
{ connect_btn }
?
答案 0 :(得分:0)
在此代码中connect_btn
点击它开始验证host_txt
中的文字,如果成功调用setupConnection()
,那么就我能理解你的问题而言,你想要做其他事情当你点击按钮时,请纠正我,如果我理解不正确,你可以通过给click属性赋值
<mx:Button label="button" id="connect_btn" click="yourMethod()"/>
希望这就是你想要的。