Hello !
Is it a bug to be unable to export un PDF with a column with
type=" date" format="yyyy-MM-dd" ? ( that do not crash, but that do nothing )
If i remove the type and the format, i can export. That column has a " new Date();" inside.
<ejs-grid #grid [dataSource]='data' [allowPdfExport]='true'>
<e-columns>
<e-column field='id' headerText='id' width=0></e-column>
<e-column field='name' headerText='name' width=150></e-column>
<e-column field='creation' headerText='creation' width=90 type=" date" format="yyyy-MM-dd"></e-column>
</e-columns>
</ejs-grid>
toolbarClick(args: ClickEventArgs): void {
if (args.item.id.includes('pdfexport')) {
this.grid.pdfExport();
}
}