Flex 4下拉列表-与数据服务绑定,如何始终保持提示或以编程方式在索引-1处添加项目

发布于 2024-10-05 22:50:45 字数 546 浏览 4 评论 0原文

我有一个使用数据库中的 HTTP 数据服务绑定的下拉列表(通过向导设置,而不是作为声明)。我的下拉列表更改了数据网格中的值,我需要“选择一个”空值,以便用户可以选择所有内容。这是我的下拉列表:

<s:DropDownList id="ddlProducts" width="400" prompt="Select a Product" close="dataGridContentChanging()" creationComplete="ddlProducts_creationCompleteHandler(event)" labelField="Title">  
    <s:dataProvider>  
        <s:AsyncListView list="{GetProductsResult.lastResult}"/>  
   </s:dataProvider>  
</s:DropDownList>

有没有办法始终保留提示或以编程方式将“选择一个”添加到下拉列表的 -1 索引?

感谢任何帮助。谢谢!

I have a drop down list that is bound using an HTTP data service from a database (set up through the wizard, not as a declaration). My drop down list changes the values in my datagrid and I need that "Select One" null value so that users can select everything. Here is my drop down list:

<s:DropDownList id="ddlProducts" width="400" prompt="Select a Product" close="dataGridContentChanging()" creationComplete="ddlProducts_creationCompleteHandler(event)" labelField="Title">  
    <s:dataProvider>  
        <s:AsyncListView list="{GetProductsResult.lastResult}"/>  
   </s:dataProvider>  
</s:DropDownList>

Is there a way to always keep the prompt or to programmatically add a "Select One" to the -1 index of the drop down list?

Any help is apprecitated. Thanks!

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

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

发布评论

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

评论(1

¢好甜 2024-10-12 22:50:45

在您的数据库中设置所有值
(有多种方法可以做到:这个
如果您使用查找表,只需将其添加到表中,如果
您正在从数据表中提取数据并放入联合语句中)

,然后处理“全部”值(单击时)以将“%”作为数据提供程序中的变量放入

setup an all value in ur Database
(any number of ways to do: this
if you are using a look up table just add it to the table, if
you are pulling from your data table put in a union statement)

then handle the the 'All' value (on click) to put in '%' as ur variable in dataprovider

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文