【发布时间】:2012-05-08 17:54:57
【问题描述】:
我正在尝试使用数组中的值设置 htmlOptions,该数组用作 CGridView 组件的 DataProvider(它是 CArrayDataProvider)。其中有一个标志,可以是 0 或 1(0 表示字体粗细:正常,1 表示粗体)
'htmlOptions'=>array('style'=>'$data["flag"] == 1 ? font-weight: bold; : font-weight: normal;'),
没用,所以我尝试直接在DataProvider中设置样式(返回font-weight:bold;或者font-weight:normal;):
'htmlOptions'=>array('style'=>'$data["style"]'),
但是输出是:
<td style="$data["style]">Value</td>
我做错了什么?
【问题讨论】:
标签: php yii yii-components