我最近在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的图像。帮助我在两种浏览器中实现正确的图像格式。
并提出分页问题。