Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
If you have a <ColumnDirective headerText='Just Display' template={myTemplateFn} you will get invalid header text in your aggregate template.
<AggregateColumnDirective footerTemplate={myFootTemplate}.....
function myFootTemplate(props){
props.headerText;
}
props.headerText will be set to the first "display only" column's headerText. Guessing whatever determines the column isn't dealing with field being null.
I was able to work around that by setting field={id} ( the FK )...but that then shows the filter and requires more work to fix.
Same if you just have commands={someCommands} .. basically if you don't have a field={someField} defined.
I'm not really using this field yet, but was thinking of creating a generic footerTemplate function and not having a reliable way to know what column I'm dealing with will make it harder.
fyi, cut and paste into this text box doesn't seem to be working for me which is kind of odd.