What am I missing here.
I have a field that is a multiselect list. When I pick more than two items, I want the printer friendly page to list the items on single lines.
I have applied the custom view of
if ($value)
$value = str_replace(",","<br />",$value);
On the normal list page for this record it works fine.
When I print the Printer Friendly page I still get the results comma separated.
ie. Corbetts, Swiftsure
instead of
Corbetts
Swiftsure
in the printed column.
Shouldn't the applied custom format apply to the printout also.
Am I missing something here.