2

我最近在YII.I 中的编辑按钮中添加了一个图像。我执行以下操作,

'class'=>'CButtonColumn',
        'header' => 'Edit',
        'template' => '{Edit}',
        'buttons' => array(
            'Edit' =>array(
            'label' => 'Edit',
            'imageUrl'=>Yii::app()->request->baseUrl.'/images/Actions-document-edit.ico',
           ));

按钮的 css 是这样的,

td.button-column a img {
    max-height:25px;
    max-width:25px;
    }

图片Actions-document-edit.ico的实际大小为25*25。 我在这里有一个情况,我在Google Chrome中有一个25*25的图像,在mozilla firefox中有一个2*2的图像。帮助我在两种浏览器中实现正确的图像格式。

谷歌浏览器 火狐浏览器

并提出分页问题。

4

2 回答 2

0

分页问题已解决

.pager ul.yiiPager li.page:after{display: inline-block !important}

但是仍然遇到图像问题...请帮助...

于 2012-12-28T04:29:24.113 回答
0

而不是 .ico 尝试使用 .JPEG 或 .png 或 .gif 图像

于 2012-12-27T05:46:20.770 回答