我在SugarCRM中设置了问卷。勾选复选框时,我想更改标签的颜色。我添加了以下自定义代码:
'customCode' => '<span style="color: red">{$fields.interest_c.value}</span>',
但我得到的是红色的1或0。
答案 0 :(得分:0)
您应该像这样添加:
'customCode' => '<input type="checkbox" id="interest_c" name="do_not_call" value="{$fields. interest_c.value}" title="" tabindex="0">'
并使用相同的访问器为您的颜色设置类。