勾选时Sugarcrm改变复选框的颜色

时间:2013-05-20 20:52:28

标签: sugarcrm

我在SugarCRM中设置了问卷。勾选复选框时,我想更改标签的颜色。我添加了以下自定义代码:

'customCode' => '<span style="color: red">{$fields.interest_c.value}</span>',

但我得到的是红色的1或0。

1 个答案:

答案 0 :(得分:0)

您应该像这样添加:

'customCode' => '<input type="checkbox" id="interest_c" name="do_not_call" value="{$fields. interest_c.value}" title="" tabindex="0">'

并使用相同的访问器为您的颜色设置类。