Vue Common - Utils - pdfExporter
exportDataGrid(options) CTP
Module: pdf_exporter
Parameters:
options:
A Promise that is resolved when the grid data is prepared for export. It is a native Promise or a jQuery.Promise when you use jQuery.
NOTE
This functionality is available as a community technology preview (CTP). Should you have any questions or suggestions prior to its official release, please create a new ticket in the DevExpress Support Center.
This method requires the jsPDF library to export data and the jsPDF-AutoTable plugin to create tables in exported files.
You can call this method at any point in your application. In this example, we call this method in a standalone button's onClick handler:
Installation command
App.vue
- npm install jspdf jspdf-autotable
- <template>
- <div>
- <DxButton ...
- @click="exportGrid()"
- />
- <DxDataGrid ...
- :ref="dataGridRef">
- <!-- ... -->
- </DxDataGrid>
- </div>
- </template>
- <script>
- import 'devextreme/dist/css/dx.common.css';
- import 'devextreme/dist/css/dx.light.css';
- import DxDataGrid from 'devextreme-vue/data-grid';
- import DxButton from 'devextreme-vue/button';
- import { jsPDF } from 'jspdf';
- import 'jspdf-autotable';
- import { exportDataGrid as exportDataGridToPdf } from 'devextreme/pdf_exporter';
- const dataGridRef = 'dataGrid';
- export default {
- components: {
- DxDataGrid,
- DxButton
- },
- data() {
- return {
- dataGridRef
- };
- },
- computed: {
- dataGrid: function() {
- return this.$refs[dataGridRef].instance;
- }
- },
- methods: {
- exportGrid() {
- const doc = new jsPDF();
- exportDataGridToPdf({
- jsPDFDocument: doc,
- component: this.dataGrid
- }).then(() => {
- doc.save('Customers.pdf');
- });
- }
- }
- }
- </script>
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.