Magento - 使用网格作为输入表单
我是 magento 的新手,我的计划是在网格中使用输入字段(用于多列和行)并通过 POST 将其内容发送到控制器。
在我的网格类(扩展了 Mage_Adminhtml_Block_Widget_Grid)中,我通过以下方式添加了输入字段:
$this->addColumn('name[]',
array(
'header'=> Mage::helper('mymodule')->__('Name'),
'index' => 'name',
'type' => 'input',
'name' => 'name[]'
));
现在我正在寻找一种简单的方法将输入的数据发送到控制器(并通过 $postData = $this 检索该数据->getRequest()->getPost());
感谢您的帮助。
I'm new to magento and my plan is to use input fields (for multiple columns and rows) in a grid and send their content via POST to the controller.
In my grid class (which extends Mage_Adminhtml_Block_Widget_Grid) I've added the input fields in the following way:
$this->addColumn('name[]',
array(
'header'=> Mage::helper('mymodule')->__('Name'),
'index' => 'name',
'type' => 'input',
'name' => 'name[]'
));
Now I'm looking for an easy method to send the entered data to the controller (and to retrieve that data via $postData = $this->getRequest()->getPost());
Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Magento 使用 grid.js 提交此网格
您可以覆盖 grid.js,捕获与选中的行对应的所有输入值,然后提交表单。
您可以在此处放置输入字段名称和值。
Magento submits this grid using grid.js
You can override grid.js, capture all input values corresponding to checked rows and then submit the form.
Here you can put input field names and values.