Flex3 中的组合框选定项
我正在 Flex3 中的 Air 应用程序中工作,当我们有 2 个值(如(数据和标签)标签属性到组合框选择、输入的数据值)时,我需要知道如何设置“selectedItem”属性。
如下图所示。
在 (selectedItem="{stylename}") 中,stylename 将具有“data”值,但我需要将该“lable”属性设置为组合框中的选定值。
就像如果 stylename 被“选中”一样,那么 ComboBox 所选项目也需要被“选中”。
如何在 Flex 中实现这一点...
提前致谢
i am working in Air application in Flex3 , i need know how to set "selectedItem" Property when we have 2 values like(data and label) label property to combobox selection, data value for our input.
Like shown below.
In (selectedItem="{stylename}") stylename will have "data" value but i need to set that "lable" property as selected value in combobox.
Like if stylename is "checked" then the ComboBox selected item need to be "Checked".
How to implement this in flex ....
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ComboBox.selectedItem
正在寻找Object
。您向其传递一个String
文字。 “stylename”在哪里设置?如果它来自外部源,您可以检索要在 setter 函数中选择的项目:ActionScript 3:
MXML:
ComboBox.selectedItem
is looking for anObject
. You are passing it aString
literal. Where is "stylename" being set? If this is coming from an external source, you can retrieve the item to be selected in a setter function:ActionScript 3:
MXML: