GithubHelp home page GithubHelp logo

Summary row at the end of the Grid about twigrid HOT 3 OPEN

uestla avatar uestla commented on June 1, 2024
Summary row at the end of the Grid

from twigrid.

Comments (3)

uestla avatar uestla commented on June 1, 2024

You could overwrite the #footer-row block:

{** @param string $footerInfo *}
{define footer-row}
<tr>
<td colspan="{$columnCount}" class="container footer-cell">
<div class="row">
{if $hasGroupActions}
{include #group-action-buttons}
{/if}
{if $grid->getPageCount() > 1}
{include #pagination}
{/if}
{$footerInfo |noescape}
</div>
</td>
</tr>
{/define}

Something like

{define footer-row}

	<tr>
		<td colspan="{$columnCount}">
			{* ... *}
		</td>
	</tr>

	{include parent}

{/define}

from twigrid.

tprochazka avatar tprochazka commented on June 1, 2024

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.
Currently, I end up with something like this. I know. Very ugly hack ;-)

{define body-cell-month-content}
    {if !isset($record->rowClass) || $record->rowClass !== App\dao\AbstractDao::TOTAL}
        <a href="{plink :month $record->year, $record->month}">{$$recordVariable|getValue:$columnName:FALSE}</a>
    {else}
        {$record->$columnName}
    {/if}
{/define}

from twigrid.

uestla avatar uestla commented on June 1, 2024

Since the $record variable is of any type of your choosing, I don't consider your approach "hacky". Maybe a bit verbose, but that's another issue :-)

from twigrid.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.