我已经创建了一个自定义模块,在其中我使用网格产品在我的管理模块。当我检查产品时,我可以成功地将它们保存到我的表中,但是我想用检查的行加载这个产品。
我该怎么做?
这是我的密码:
$this->addColumn('is_selected', array(
'type' => 'checkbox',
'name' => 'is_selected',
'field_name' => 'selectedproducts[]',
'values' => $this->_getSelectedProducts(),//here i go to method
'index' => 'entity_id',
));
然后吼叫
protected function _getSelectedProducts()
{
$products = Mage::getModel('custom_module/mytable')->getData();//Here i need some help
return $products;
}
1条答案
按热度按时间ymzxtsji1#
以下是带序列化程序的网格解决方案: