列にカーソルを合わせると、変数に格納されている全体の内容を表示する必要があるため、cgridview の値にツールチップを表示したいと考えています。変数 $data["comment"] の内容をツールチップ ( 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
),