如何在 Magento 编辑选项卡中添加网格?

发布于 2024-10-06 07:11:16 字数 124 浏览 2 评论 0原文

我创建了一个新的 magento 模块。它显示信息,例如销售/订单网格,然后单击订单时会出现编辑(在原始 magento 视图中)选项卡。我创建了一些选项卡,我希望其中一个选项卡是网格的,例如订单发货、贷项凭证或发票。 我该怎么做?

I ha created a new magento module. It shows info like for example Sales/Orders grid, then on click of order there is edit(in original magento view) tabs. I have created some tabs and I want one of them to be grid, like in orders shipment, creditmemos or invoices.
How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

記憶穿過時間隧道 2024-10-13 07:11:16

这与向任何其他页面添加网格并没有太大的不同。我知道当我构建一个模块时,我深入研究了 Magento 原生的 Google Base 插件,在那里我发现了很多好的代码,可以帮助我理解如何实现管理模块的不同方面。

例如,我的选项卡块覆盖网格,如下所示:

class Ssi_Crm_Block_Quotes_Edit_Tab_Bom_Product extends Mage_Adminhtml_Block_Widget_Grid

然后,该类覆盖标准网格函数,例如 _prepareCollection() 和 _prepareColumns() 您可以在其他地方找到文档记录的内容。

It's not really too much different then adding a grid to any other page. I know when I was building a module I dug into the Google Base addon that is native to Magento, I found a lot of good code there to help me understand how to implement different aspects of an admin module.

For instance my tab block overides grid, like so:

class Ssi_Crm_Block_Quotes_Edit_Tab_Bom_Product extends Mage_Adminhtml_Block_Widget_Grid

This class then overrides the standard grid functions such as _prepareCollection() and _prepareColumns() stuff that you can find documented elsewhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文