如何在magento admin网格中显示图标而不是动作标签。例如:我需要显示图像图标而不是'编辑'/'删除网格中的行
感谢, 穆拉利
答案 0 :(得分:2)
我是通过使用css.Simply添加到动作数组来完成此问题的新类,如
$this->addColumn('action',
array(
'header' => Mage::helper('mymodule')->__('Action'),
'width' => '100',
'type' => 'action',
'align' =>'center',
'getter' => 'getAnswerId',
'actions' => array(
array(
'caption' => Mage::helper('mymodule')->__('Delete'),
'url' => array('base'=> '*/*/delete'),
'confirm' => Mage::helper('mymodule')->__('Are you sure?'),
'class' => 'addm',
)
),
'filter' => false,
'sortable' => false,
'index' => 'store',
'is_system' => true,
));
使用以下代码编写新的css:
.addm{
background-image:url('delete.png');
background-repeat:no-repeat;
text-indent:-9999px !important;
font-size:0px;
display:block;
margin-left:5px;
}.
你做完了。