I want to add two columns from an other table.
Following the documentation and the join example I have this:
- Code: Select all
$tableColumns['car_id'] = array('display_text' => 'Make', 'perms' => 'EVCAXTQS', 'join' => array('table' => 'ad_auto', 'column' => 'car_id', 'display_mask' => "make" ,'type' => 'left'));
The current table and the join table are joiend on the car_id columns. The display_mask points to the column of the join table.
So far so good.
But how do I get a second (third etc) column out of the joined table eg column 'color'.
This must be obvious but I fail to see it.
Regards
Karel
