我应该如何使用数据库条目和元值的组合来填充列表?
我正在获取表的内容以填充 Flex 3 应用程序中的下拉框:
<mx:ComboBox dataSource="{myList}" />
该列表由人员数据库表的内容填充:
Public, John Q
Doe, Jane
...
但是,组合框中还需要包含一些其他元条目不是来自数据库的:
ALL
ALL MEN
ALL WOMEN
Public, John Q
Doe, Jane
...
执行此操作的最佳方法是什么?
I am acquiring the contents of a table to fill a dropdown box in a Flex 3 application:
<mx:ComboBox dataSource="{myList}" />
The list is populated by the contents of a database table of persons:
Public, John Q
Doe, Jane
...
The combo box, however, also needs to have some other meta-entries in it that do not come from the database:
ALL
ALL MEN
ALL WOMEN
Public, John Q
Doe, Jane
...
What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
覆盖“mylist”的设置器并将您的值插入到数组中。
Override the setter for "mylist" and insert your values into the array.