Posted 20 March 2019, 12:02 pm EST
Hi,
I’m trying to have FlexGridPdfConverter exporting formatted data, using a pipe at some point.
I tried using it directly but as the usage of template is not supported for obvious reasons, It failed.
Do you know any way to achieve the goal ?
Here’s what I tried to do that did not involve a template :
this.formatItem.addHandler((self, e: GridFormatItemEventArgs) => {
e.cell.textContent = this.myPipe.transform(e.cell.textContent);
}
Thanks in advance !