-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Summary row at the end of the Grid #42
Comments
You could overwrite the #footer-row block: TwiGrid/src/TwiGrid/DataGrid.latte Lines 626 to 645 in 97f4193
Something like {define footer-row}
<tr>
<td colspan="{$columnCount}">
{* ... *}
</td>
</tr>
{include parent}
{/define} |
Thanks! It is also an interesting way. I'm just not sure if there is just not possible to have access to data directly from this template.
|
Since the |
I often need some summary row at the end of the grid with total or average values.
I'm doing it usually by adding one more row with the special class to style it differently.
But I don't found a way how to handle it if I have some special formatting rule for one column, which should not apply to the last row.
Like
The last row should not be clickable. Is there some official way how to do it?
The text was updated successfully, but these errors were encountered: