ComponentOne wijmo 数据绑定

发布于 2024-12-06 11:02:57 字数 440 浏览 0 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

墨小沫ゞ 2024-12-13 11:02:57

是的,这是可能的。 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.

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