现在的位置: 首页 > 综合 > 正文

YII:CButtonColumn中button设定不能给image设置样式

2013年10月05日 ⁄ 综合 ⁄ 共 1068字 ⁄ 字号 评论关闭


Source Code:framework/zii/widgets/grid/CButtonColumn.php#309 

protected function renderButton($id,$button,$row,$data)
{
    if (isset(
$button['visible']) && !$this->evaluateExpression($button['visible'],array('row'=>$row,'data'=>$data)))
          return;
    
$label=isset($button['label']) ? $button['label'] : $id;
    
$url=isset($button['url']) ? $this->evaluateExpression($button['url'],array('data'=>$data,'row'=>$row)) : '#';
    
$options=isset($button['options']) ? $button['options'] : array();
    if(!isset(
$options['title']))
        
$options['title']=$label;
    if(isset(
$button['imageUrl']) && is_string($button['imageUrl']))
        echo 
CHtml::link(CHtml::image($button['imageUrl'],$label),$url,$options);
    else
        echo 
CHtml::link($label,$url,$options);
}

以上code中的红色画线部分:

再看以下部分:

Source Code:
framework/web/helpers/CHtml.php#396

public static function image($src,$alt='',$htmlOptions=array())
{
    
$htmlOptions['src']=$src;
    
$htmlOptions['alt']=$alt;
    return 
self::tag('img',$htmlOptions);
}

即:CButtonColumn中button设定当需要设置image时,$htmlOptions 为空,即不能给image设置宽长大小等样式!

抱歉!评论已关闭.