Flex 4:以编程方式将项目添加到下拉列表

发布于 2024-09-27 10:31:12 字数 180 浏览 6 评论 0原文

我想以编程方式将项目添加到下拉列表中。

我有一个空的下拉列表,然后根据多种因素,我用各种操作选择填充它。

下拉列表称为 dlFirstChoice,我想向其中添加一些值,有人可以给我这样做的基本代码吗?我已经厌倦了 IList 和数组作为数据提供者,但显然我做错了什么。

请提前感谢您提供任何帮助。

I would like to add items to a dropdownlist progmatically.

I have an empty drop downlist and depending on a number of factors I then populate it with various action choices.

the Drop Down list is called dlFirstChoice and I would like to add some values to it, can some one give me the basic code to do so, I have tired ILists and Arrays as the Dataprovider but clearly Im doing something wrong.

Please and thank you in advance for any help.

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

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

发布评论

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

评论(1

暖心男生 2024-10-04 10:31:12
 var dropListDb:ArrayList=new ArrayList();
     dropListDb.addItem({label: "Equals (List)"});
     dropListDb.addItem({label: "Is Between"});
     dlFirstChoice.visible = true;
     dlFirstChoice.dataProvider=dropListDb;
     dlFirstChoice.selectedIndex=0;
 var dropListDb:ArrayList=new ArrayList();
     dropListDb.addItem({label: "Equals (List)"});
     dropListDb.addItem({label: "Is Between"});
     dlFirstChoice.visible = true;
     dlFirstChoice.dataProvider=dropListDb;
     dlFirstChoice.selectedIndex=0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文