ASP.NET ObjectDatasource 使用代码隐藏属性

发布于 2024-10-12 06:07:02 字数 611 浏览 8 评论 0原文

是否可以使用页面属性作为 ListBox 或其他控件(如 Telerik RadCombobox)的 Datasource/DataSourceID?

我在将数据绑定到 RadGrid 的 FilterTemplate 中定义的 Telerik RadCombobox 时遇到问题。我在页面的代码隐藏中创建了一个属性,并希望以这种方式访问​​它。

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSourceID="<%# PropertyInTheCodeBehind %>"
            runat="server" />           

        [...]
    </FilterTemplate>

或者还有其他方法可以实现此目的吗? 我只想访问代码隐藏中的数据。

Is it possible to use a page-property as Datasource/DataSourceID for a ListBox or other controls like a Telerik RadCombobox?

I'm having a issue to bind data to a Telerik RadCombobox defined in a FilterTemplate of a RadGrid. I created a property in the code-behind of my page and want to access it this way.

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSourceID="<%# PropertyInTheCodeBehind %>"
            runat="server" />           

        [...]
    </FilterTemplate>

Or is there another way to accomplish this?
I just want to access data in the code-behind.

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

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

发布评论

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

评论(1

妄想挽回 2024-10-19 06:07:02

而是定义一个方法或数组并将其传递给组合的 DataSource 属性。这里有几个例子:

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSource="<%# (new string[] { "Item1", "Item2", "Item3", "Item4" }) %>"
            runat="server" />           

        [...]
    </FilterTemplate>

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSource="<%# GenerateComboSource() %>"
            runat="server" />           

        [...]
    </FilterTemplate>

public string[] GenerateComboSource()
{
  return (new string[] { "Item1", "Item2", "Item3", "Item4" });
}

Rather define a method or an array and pass it to the DataSource property of the combo. Here are a couple of examples:

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSource="<%# (new string[] { "Item1", "Item2", "Item3", "Item4" }) %>"
            runat="server" />           

        [...]
    </FilterTemplate>

<telerik:GridBoundColumn [...]>
    <FilterTemplate>
        <telerik:RadComboBox
            ID="filter"
            AutoPostBack="false" 
            AppendDataBoundItems="true" 
            DataSource="<%# GenerateComboSource() %>"
            runat="server" />           

        [...]
    </FilterTemplate>

public string[] GenerateComboSource()
{
  return (new string[] { "Item1", "Item2", "Item3", "Item4" });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文