我想在 cgridview 值中显示工具提示,因为它必须显示存储在变量中的整个内容。我想将变量 $data["comment"] 中的 contant 显示为工具提示 ( title ),目前它将整个字符串显示为 - $data["comment"]。
array(
'name'=>'Comment',
'header'=>'Comment',
'value'=>'(strlen($data["comment"])>35)?substr($data["comment"], 0, 35)."..":$data["comment"];',
'htmlOptions'=>array('title'=>'$data["comment"]'), // this what i have do
),