I want to pass in a column more data then 1 row.
// callback column
public function _callback_test($value, $row) {
$test= $this->Misc->getDen($row->id,'aaaa','bbbb','1');
foreach ($test as $key => $value) {
return $value->xxxx;
}
}
the array $test has 4 records but i only see 1 in the view. Any info how can i pass to the column all the array ?
