diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php index 119f238f2c3..67b4d2ff2d9 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Super/Group.php @@ -174,6 +174,31 @@ protected function _prepareColumns() 'filter_condition_callback' => [$this, '_addLinkModelFilterCallback'] ]); + $this->addColumn('action', [ + 'header' => Mage::helper('catalog')->__('Action'), + 'width' => '50px', + 'type' => 'action', + 'getter' => 'getId', + 'actions' => [ + [ + 'caption' => Mage::helper('catalog')->__('Edit'), + 'id' => 'editlink', + 'field' => 'id', + 'onclick' => "popWin(this.href,'win','width=1000,height=700,resizable=1,scrollbars=1');return false;", + 'url' => [ + 'base' => 'adminhtml/catalog_product/edit', + 'params' => [ + 'store' => $this->getRequest()->getParam('store'), + 'popup' => 1 + ], + ], + ], + ], + 'filter' => false, + 'sortable' => false, + 'index' => 'stores', + ]); + return parent::_prepareColumns(); }