Have 7 custom columns that I would like to do a SUM and display at the bottom as it is with standard columns
not sure how to go about this:ex column
$this->ListOptions->Add(“GSTonKM”);not sure what to do in
ListOptions_Rendered(){
$item = &$this->ListOptions->getItem("GSTonKM");
$GSTonKM = ($ttlKM * 0.06542);
$item->Body = FormatCurrency($GSTonKM, 2);
if ($this->RowType == ROWTYPE_AGGREGATE) {
??? not sure what to total and what to display ??
}
}