0

如何在 magento 管理网格中显示图标而不是操作标签。例如:我需要在网格中显示图像图标而不是“编辑”/“删除行”

谢谢, 壁画

4

1 回答 1

2

我通过使用 css.Simply Add to action array 你的新类完成了这个问题

$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;

    }.

你已经做到了。

于 2013-01-22T08:10:29.667 回答