如何在asp.net运行时绑定radcombobox
我有一个网页,页面上的 radgrid 控件中有一个 Telerik RadComboBox,并且我有一个 SqlserverCe 数据库。我的问题是如何编写代码以在 ASP.NET 中的页面加载事件中绑定 RadCombobox 请帮助我... ..
I have a webpage that has a Telerik RadComboBox in radgrid control on the page,and i have a SqlserverCe database.My issue is how can i write the code to bind the RadCombobox at page load event in asp.net please help me.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
项目绑定到 RadComboBox 的方式基本上与绑定到 ASP.NET DropDownList 的方式相同。
您可以将 RadComboBox 绑定到 ASP.NET 2.0 数据源,ADO.NET DataSet/DataTable/DataView,到 数组和 ArrayList,或对象的 IEnumerable。当然,您也可以自己一项一项地添加。对于 RadComboBox,您将使用 RadComboBoxItems 而不是 ListItems。
以一种或另一种方式,您必须告诉组合框每个项目的文本和值是什么。
使用服务器端代码中的项目 :
绑定到 DataTable、DataSet 或DataView:
编辑:网格中的RadComboBox:
在 RadGrid 内部,通过设置 EnableLoadOnDemand="True" 并处理 OnItemsRequested 事件,使用按需加载可能是最简单的方法。
您还可以在网格的 OnItemDataBoundHandler 事件中手动绑定组合框:
Items are bound to RadComboBox basically in the same way as to an ASP.NET DropDownList.
You can bind the RadComboBox to ASP.NET 2.0 datasources, ADO.NET DataSet/DataTable/DataView, to Arrays and ArrayLists, or to an IEnumerable of objects. And of course you can add the items one by one yourself. With RadComboBox, you'll use RadComboBoxItems instead of ListItems.
In one way or other, you'll have to tell the combobox what is each item's text and value.
Working with Items in Server Side Code:
Binding to DataTable, DataSet, or DataView:
EDIT: RadComboBox in a Grid:
Inside a RadGrid, it is perhaps easiest to use load on demand, by setting EnableLoadOnDemand="True" and handling the OnItemsRequested event.
You can also bind the combobox manually in the grid's OnItemDataBoundHandler event: