What about Wisej.Web.Ext.DevExtreme.dxDataGrid export to PDF and Printing

0
0

Hi,

What about Wisej.Web.Ext.DevExtreme.dxDataGrid export to PDF and direct Printing (with header and footer).

Is this possible with widget and how:

https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/ExportToPDF/jQuery/Light/

And still what about the direct printing, should I buy something more from devex except DevExtreme?

Thank you!

  • You must to post comments
0
0

DevExtreme should be enough. For PDF export you need to call

DevExpress.pdfExporter.exportDataGrid({
jsPDFDocument: doc,
component: dataGrid
}).then(function() {
doc.save(‘Customers.pdf’);
});

See their docs.

In Wisej you can execute client side events using the ClientEvents collection on any widget. Or use Call() if you create your javascript function, or use Eval() to evaluate a script.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.