Magento - 使用网格作为输入表单

发布于 2024-12-03 07:53:43 字数 537 浏览 2 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为一人 2024-12-10 07:53:43

Magento 使用 grid.js 提交此网格
您可以覆盖 grid.js,捕获与选中的行对应的所有输入值,然后提交表单。
您可以在此处放置输入字段名称和值。

this.formHiddens.update('');
new Insertion.Bottom(this.formHiddens, this.fieldTemplate.evaluate({name: fieldName, value: value}));

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.

this.formHiddens.update('');
new Insertion.Bottom(this.formHiddens, this.fieldTemplate.evaluate({name: fieldName, value: value}));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文