Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
The Original table data is a nvarchar(max)has Record1,Record2,Record3I am using the DB lookup multi select Checkbox list, I am using a custom expression to do a line break which works.This is my expression
SubEventName + ' ' + MemberPrice1 + ' ' + NonMemberPrice1 + CHAR(13)+CHAR(10)
and the results areRecord1,Record2,Record3How do I remove the comma?
Here is the solution that worked. BeforeDisplay event of the View page, SubEventsIDNums is the field name:
$xt->assign('SubEventsIDNums_value',str_replace(",","",$xt->getvar('SubEventsIDNums_value')));