Hello, I use a template column to show more information on the screen. It's working well...
But when I do an export pdf, the column is not shown at all at the pdf. Is it by design or it's a bug ?
how can I have a column template in an export pdf?
<ColumnsDirective>
<ColumnDirective
field='code'
headerTemplate={() => {
return (<div><b className='e-header'>Code</b></div>);
}}
template={this.columnTemplate}
width='150'>
</ColumnDirective>
</ColumnsDirective>
columnTemplate(props) {
return <div className='columnTemplate d-flex flex-column justify-content-center' style={{ height: '45px' }}>
<p style={{ marginTop: '10px', marginBottom: '1rem' }}>{props.taskData.code}</p>
<p style={{ marginTop: '10px', marginBottom: '1rem' }}> {props.taskData.projectManager}</p>
</div>
}