如何在 Magento 编辑选项卡中添加网格?
我创建了一个新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与向任何其他页面添加网格并没有太大的不同。我知道当我构建一个模块时,我深入研究了 Magento 原生的 Google Base 插件,在那里我发现了很多好的代码,可以帮助我理解如何实现管理模块的不同方面。
例如,我的选项卡块覆盖网格,如下所示:
然后,该类覆盖标准网格函数,例如 _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:
This class then overrides the standard grid functions such as _prepareCollection() and _prepareColumns() stuff that you can find documented elsewhere.