是否可以使用 Flex 在组合框数据提供程序中使用条件运算符?
在我的组合框中,我必须显示基于条件的团队名称。所以我会尝试
dataProvider="{usersXML.users.user.(id=10).name}"
但显示一些错误。但如果我尝试
dataProvider="{usersXML.users.user.name}"
显示所有 name 。它正在工作。
我如何根据条件显示列表。在组合框中。请介绍我。是否可以检查 dataProvider 上的 id 数组?
In my Combo box i have to shows team names condition based . So i will try like
dataProvider="{usersXML.users.user.(id=10).name}"
but shows some errors . but if i tried
dataProvider="{usersXML.users.user.name}"
display all name . It's working .
How can i condition based to display the list . In combobox . Plz refer me . is it possiable to check array of id on the dataProvider ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来这更像是一个 E4X 问题,而不是专门与组合框有关的问题。你尝试过吗:
It seems like this is more an E4X question than one to do with the Combo box specifically. Did you try:
我认为你的处理方式是错误的。您是否尝试过存储这样的内容:
如果您使用上面的内容来设置 id,那么您可以运行测试以确保在这种情况下用户 ID 和适当的名称属性确实存在。
要使 XML 指向该对象:
I think you're going about it the wrong way. Have you tried storing something like this:
If you use the above to set the id, then you can run tests to make sure that user ID and the appropriate name attribute definitely exists in this case.
To get the XML to point to this object: