I'm using the extend from Yiiboster (last version)
and I want to add a Total to an invoice and I want to do a TbSumOperation but without success so far
I don't know how to specify from which column on columns to sum
So far I only get a blank rectangle
I just copy pasted the example from the page and put it after columns=>(),
'extendedSummary' => array(
'title' => 'Total Employee Hours',
'columns' => array(
'hours' => array('label'=>'Total Hours', 'class'=>'TbSumOperation')
)
),
'extendedSummaryOptions' => array(
'class' => 'well pull-right',
'style' => 'width:300px'
),
Can anyone help?