php – Yii,在cgridview(表)值中显示工具提示

前端之家收集整理的这篇文章主要介绍了php – Yii,在cgridview(表)值中显示工具提示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在cgridview值中显示工具提示,因为在列上悬停它必须显示存储在变量中的整个内容.
我想在变量$data [“comment”]中显示为工具提示(标题),目前它将整个字符串显示为 – $data [“comment”].
array(
                        'name'=>'Comment','header'=>'Comment','value'=>'(strlen($data["comment"])>35)?substr($data["comment"],35)."..":$data["comment"];','htmlOptions'=>array('title'=>'$data["comment"]'),// this what i have do
                    ),
试试这个:
array(
    'name'=>'Comment','type'=>'raw','value'=>'( strlen($data["comment"]) > 35
        ? CHtml::tag("span",array("title"=>$data["comment"]),CHtml::encode(substr($data["comment"],35)) . "..")
        : CHtml::encode($data["comment"])
    );',),
原文链接:https://www.f2er.com/php/240145.html

猜你在找的PHP相关文章