导出数据 Telerik 网格
我正在使用 Telerik 的 RadGrid(RadGrid.Net2(我知道我应该升级到更新的版本,但这不是这里的选项..))。它的功能之一是将数据导出到Excel。使用grid.MasterTableView.ExportToExcel();
,使用网格(所有页面)中过滤和排序的数据创建 Excel 文件。我怎样才能抓取这些数据?
grd.ExportSettings.ExportOnlyData = true;
grd.ExportSettings.IgnorePaging = true;
grd.MasterTableView.ExportToExcel();
我想获取与 Telerik 写入 Excel 相同的数据,但不知道如何执行此操作。
grd.MasterTableView.GetExportDataAsDataTable()
将是完美的;)
I'm using RadGrid from Telerik (RadGrid.Net2 (I know I should upgrade to a newer version, but that is not an option here..)). One of it's features is to export data to excel. With grid.MasterTableView.ExportToExcel();
an excel file is created with filtered and sorted data from the grid (all pages). How can i grab this data?
grd.ExportSettings.ExportOnlyData = true;
grd.ExportSettings.IgnorePaging = true;
grd.MasterTableView.ExportToExcel();
I want to grab the same data as Telerik is writing to excel but can't figure out how to do this..
grd.MasterTableView.GetExportDataAsDataTable()
would be perfect ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您可以通过检查 ExportToExcel 中的代码并将一些逻辑连接到 MasterTableView 来做到这一点,但我真的不认为有任何“标准”方法可以做到这一点。
I guess you could be able to do this by inspecting the code in ExportToExcel, and hooking on some logic to the MasterTableView, but I really don't think there are any 'standard' way of doing this..