通过 JavaScript 访问 Magento Admin Grid 的对象

Accessing Object of Magento Admin Grid via Java-Script(通过 JavaScript 访问 Magento Admin Grid 的对象)
本文介绍了通过 JavaScript 访问 Magento Admin Grid 的对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想访问 Magento Adminhtml Grid 的 JavaScript 对象.我想在我的对话框关闭并且对控制器的 Ajax 请求完成后重新加载网格.

I would like to access the JavaScript Object of the Magento Adminhtml Grid. I want to reload the Grid after my Dialog is closed an the Ajax-Request to the Controller has finished.

如果我修改 grid.js,这很容易实现.但是我不想修改magento本身的grid.js.

If i modify the grid.js this is easy to make. But i don't want to modify the grid.js of magento itself.

任何想法我可以如何访问该对象?

Any ideas how i can access that object?

推荐答案

迟到的答案,但也许会对某人有所帮助

Late answer, but maybe it will help someone

如果你像这样在 Grid.php 中设置网格:

If you setup the grid in Grid.php like this:

parent::__construct();
$this->setId('your_grid_id');
.
.
.

来自javascript,网格对象是

from javascript, grid object is

your_grid_idJsObject

在你的情况下

your_grid_idJsObject.reload();

这篇关于通过 JavaScript 访问 Magento Admin Grid 的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)