ComponentOne wijmo 数据绑定
我在 C1 文档中找不到这个问题的答案。是否可以将 ComponentOne wijmo 网格绑定到 System.Data.DataTable 的 DefaultView?我见过的示例显示网格被告知在哪里可以找到 MS-Access MDB 文件,并且网格的数据源被设置为 sql select 语句。但我想知道是否可以在服务器端(例如 C#)代码中执行类似的操作:
// myFunc has a command that executes a SP on the server
// and it returns a DataTable
System.Data.DataTable T = myFunc(... );
myWijmoGrid.DataSource = T.DefaultView;
I wasn't able to find the answer to this question in the C1 documentation. Is it possible to bind the ComponentOne wijmo grid to the DefaultView of a System.Data.DataTable? The examples I've seen show the grid being told where to find a MS-Access MDB file and the grid's datasource is being set to a sql select statement. But I'd like to know if it's possible to do something like this, in server-side (e.g. C#) code:
// myFunc has a command that executes a SP on the server
// and it returns a DataTable
System.Data.DataTable T = myFunc(... );
myWijmoGrid.DataSource = T.DefaultView;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。 Wijmo GridView 实现 CompositeDataBoundControl,因此它可以绑定到 ASP.NET 中的任何数据源。例如,它可以绑定到 DataTables、SqlDataSource、LinqDataSource 等。
Yes it is possible. The Wijmo GridView implements CompositeDataBoundControl so it can be bound to any DataSource in ASP.NET. For instance it can be bound to DataTables, SqlDataSource, LinqDataSource, etc.