0

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

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

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

4

1 回答 1

0

你应该像这样添加它:

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

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

于 2013-05-21T08:59:32.067 回答