现在我正在为magento admin page创建一个模块.Below是截图
我想要做的是,如果我在动态块中选择“模板”,我想获取该选项值并将该值传递给下一个“文本和图像”选项卡(选项卡控制器)
我不知道如何获取该值并将值传递给制表符控制器。
以下是我想在 URL
$this->addTab(
'dynamicpages',
array(
'label' => Mage::helper('agile_dynamicproductpage')->__('Text and Images'),
'url' => $this->getUrl('*/*/dynamicpages', array('_current' => true, 'template' => 'How to get selected dropdown value here')),
'class' => 'ajax'
)
);
以下是Controller操作
public function dynamicpagesAction()
{
echo $this->getRequest()->getParam('template');
}