如何在magento网格中添加预览列?

时间:2016-11-23 13:00:06

标签: magento magento-1.9

我想在网格中添加一个带有'预览'文本的列。像图像一样:

enter image description here当我使用鼠标覆盖文本时,我想显示一个html页面。它是从数据库中添加的html页面(BLOB类型)。

渲染器:

 public function render(Varien_Object $row)
            {
               //grid is filled with data from custom table page(id, title, html_code-BLOB)
                $aId =  $row->getData($this->getColumn()->getIndex());
                $a = Mage::getModel('page')->load($aId);

               //HtmlCode is a column from database that contains BLOB html page
                $sourcecode = $a->getHtmlCode();

            if(isset($sourcecode))
        {
            $value='<a href = "" value="">preview</a>';
        }

        return $value;

    }

0 个答案:

没有答案