我想在网格中添加一个带有'预览'文本的列。像图像一样:
当我使用鼠标覆盖文本时,我想显示一个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;
}