cgridviewの値にツールチップを表示するには、変数に格納されている全体の定数を表示する必要があります。 変数$ data ["comment"]にcontantをツールチップ(タイトル)として表示したいのですが、現在は文字列全体を - $ data ["comment"]として表示しています。Yii、cgridview(テーブル)値のツールチップを表示
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
),
thankx ...しかし、動作していない:あなたは自分の考えを取り、単にあなた自身の列クラスを作ることができるはずです。 – Kiran
どのような種類のデータプロバイダを使用していますか? – Sarke
一般、 'dataProvider' => $ model-> search()、 – Kiran