我可以只导出 DevExpress 网格中的可见项目吗
我们在 Web 应用程序上使用 DevExpress Grid 获取数据,并且用户要求仅从页面导出可见数据。目前,如果我们进行导出,它会导出网格中的所有内容,无论是显示在当前页面上,还是显示在未来页面上(200 个项目,20 页,仅显示第 4 页,我们导出所有内容)。
我们正在使用 WritePdfToResponse (如果它是 PDF 文件作为示例)并尝试使用 PdfExportOptions PageRange,但它似乎只适用于 PDF 文件的页面,而不适用于数据...例如,如果有 200 个项目显示,在网站上显示为 20 页,但在 PDF 中显示为 4 或 5 页。如果我们只想要第 4 页,我们会得到 PDF 的第 4 页,而不是网站的第 4 页...这可以做到吗?理想情况下,对于 PDF、CVS、RTF 和 XSL...
We have data using DevExpress Grid on a web application, and the users are asking to only export the visible data from the page. At the moment, if we do an export, it exports everything from the grid, whether it is shown on the current page, or on a future page (200 items, 20 pages, showing only page 4, we export everything).
We are using the WritePdfToResponse (if its a PDF file as an example) and tried using the PdfExportOptions PageRange, but it seems to only work for Pages of the PDF file, not the data... For example, if there are 200 items to display, on the site it shows as 20 pages, but in PDF, it shows up as 4 or 5 pages. If we want only page 4, we get page 4 of the PDF, not of the site... Can this be done? Ideally, for PDF, CVS, RTF and XSL...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
网格导出器从 ASPxGridView 控件导出整个数据。但是,如果您临时将网格仅绑定到可见页面,然后将其导出,您将得到相同的结果。
例如,您可以获取网格的页面索引来确定用户在屏幕上看到的内容并从数据源中获取这些记录。
The grid exporter exports the entire data from the ASPxGridView control. However, if you temporarily bind the grid to a visible page only, and then export it, you will get the same result.
For example, you can get the grid's page index to determine what user sees on the screen and that fetch these records from the datasource.
我假设您可以选择所需的行范围并设置 ExportedRowType 属性href="http://documentation.devexpress.com/#AspNet/clsDevExpressWebASPxGridViewExportASPxGridViewExportertopic" rel="nofollow">ASPxGridViewExporter 到选定的。
另请查看以下帮助主题:
- 导出概述
- 选择
I assume that you can select required range of rows and set the ExportedRowType property of the ASPxGridViewExporter to Selected.
Please also review the following help topics:
- Export Overview
- Selection