We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is an example for the extended header & footer configuration:
{ index: 2, header: 'Share (EUR)', headerClasses: ['editable-table-header', 'text-center'], footer: '0', footerClasses: ['editable-table-footer', 'text-center', 'no-editor', 'sum-result'], name: 'share_eur', classes: flatten(['text-center', 'sum-col', 'percent-partial-value-row', additionalClasses]), isValid: isValidFloat, afterAdd: (value, cell) => updateSums(table, tableElement, tableDataFieldId, value, cell), afterChange: (value, cell) => updateSums(table, tableElement, tableDataFieldId, value, cell), convertOut: convertToFloat, }
I've added header, headerClasses, footer, footerClasses to be able to use a such dynamic configuration for header & footer.
header
headerClasses
footer
footerClasses
The text was updated successfully, but these errors were encountered:
fix torrobinson#8
d9d6ab6
Successfully merging a pull request may close this issue.
Here is an example for the extended header & footer configuration:
I've added
header
,headerClasses
,footer
,footerClasses
to be able to use a such dynamic configuration for header & footer.The text was updated successfully, but these errors were encountered: