导入按钮 + magento 管理产品网格中的文件浏览字段
我想在 magento admin 的产品网格页面中的“添加产品”按钮旁边添加一个“导入”按钮和一个文件浏览按钮。
当用户选择文件并单击“导入”按钮时 我将文件上传到 var/import,打开一个新选项卡并运行导入配置文件。
如何将表单(导入按钮+文件浏览字段)添加到网格顶部?
谢谢
I want to add an Import button and a file browse button next to the Add Product button in the product grid page in magento admin.
When the user choose a file and clicks the Import button
I'll upload the file to var/import, open a new tab and run the import profile.
How can I add the form (import button + file browse field) to the top of the grid?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 XML 布局为产品网格容器块设置自定义模板,并在其中添加自定义表单块。您需要为此扩展
adminhtml_catalog_product_index
布局句柄:然后您需要定义块和模板。您的自定义块应从
Mage_Adminhtml_Block_Widget_Form
扩展,模板应为adminhtml/default/default/template/catalog/product.phtml
的副本,但进行修改以显示您的自定义块,如以下示例所示:Use XML Layouts to set your custom template for product grid container block and add your custom form block there. You need to extend
adminhtml_catalog_product_index
layout handle for that:Then you need to define your block and template. Your custom block should be extended from
Mage_Adminhtml_Block_Widget_Form
and template should be a copy ofadminhtml/default/default/template/catalog/product.phtml
but with modifications to display your custom block, like in the following example:您可以使用
Mage_Adminhtml_Block_Widget_Container::addButton()
来执行此操作。搜索 magento 的代码以调用此函数,了解如何使用它,创建您自己的容器块,通过使用布局文件用它替换 magento 的产品容器块,然后就完成了。you can use
Mage_Adminhtml_Block_Widget_Container::addButton()
to do this. Search magento's code for calls to this function to see how it should be used, create your own container block, replace magento's container block for the product with it by using a layout file and you're done.你好
没错,使用
Mage_Adminhtml_Block_Widget_Container::addButton()
方法 &这是语法,当然你可以有任何标签 &你想要的按钮的 id。
setLocation
允许您设置点击此按钮时您想去的目标。Hi
thats right use
Mage_Adminhtml_Block_Widget_Container::addButton()
method & here is the syntaxof course u can have any label & id of button that u want.
setLocation
allows u to set the target where u want to go when u click on this button.