Questions tagged «modal»

2
如何更改Magento 2中的现有模态?
我正在尝试更改Magento 2中 模态(不是模型)的行为。有问题的模态在中advanced_inventory_modal声明module-catalog-inventory/view/adminhtml/ui_component/product_form.xml。 现在,我知道可以在product-form-modifier-pool中使用修饰符: <virtualType name="Magento\Catalog\Ui\DataProvider\Product\Form\Modifier\Pool"> <arguments> <argument name="modifiers" xsi:type="array"> <item name="hf_quantity" xsi:type="array"> <item name="class" xsi:type="string">Vendor\Module\Ui\DataProvider\Product\Form\Modifier\Quantity</item> <item name="sortOrder" xsi:type="number">100</item> </item> </argument> </arguments> </virtualType> ...,然后modifyMeta()在我的修饰符中使用-method来操纵XML配置,但是由于某些原因,此处提供的数据中不存在清单模式。sortOrder由于我已经将其设置得很高,所以这也不是与之相关的问题。该sortOrder-attribute可能有一些用它做。 那有什么呢?谁能告诉我修改Magento 2中现有模态内容的正确方法是什么? 编辑: 我找到了有关如何实现我要实现的目标的解决方案或解决方法(尚不确定)。事实证明,如果设置sortOrder为10000,则modifyMeta()-a方法中可以使用一些数据: public function modifyMeta(array $meta) { if ($path = $this->arrayManager->findPath('quantity_and_stock_status_qty', $meta, null, 'children')) { $this->arrayManager->remove( $path . '/children/qty/arguments/data/config/validation/validate-digits', $meta ); } if ($path …
36 magento2  modal 

5
如何在magento2中创建表单弹出模式
我是magento2的新手。我正在尝试为我的新表格创建一个弹出模式。我创建了一个弹出窗口,可以正常工作,但无法创建模式。 以下是在页面加载时加载的弹出代码- require([ 'jquery', 'Magento_Ui/js/modal/alert' ], function($, alert) { alert({ title: "Some title", content: "we can show popuop based on cookies later", autoOpen: true, clickableOverlay: false, focus: "", actions: { always: function(){ console.log("modal closed"); } } }); } ); 请帮助我创建一个模态。任何帮助都非常感谢。

2
如何创建无法关闭的Magento 2 Modal弹出窗口?
我正在尝试创建无法关闭的模式弹出窗口。它具有一个按钮,可通过单击该按钮将您带到下一页,但是我不希望用户能够关闭它。 可以通过三种方式关闭模式弹出窗口: 单击[X]右上角的十字/ 按钮 按下逃逸 点击覆盖 到目前为止,这是我的模态JS,我认为clickableOverlay: false已经解决了第三个问题: require( [ 'jquery', 'Magento_Ui/js/modal/modal' ], function($, modal) { $("#popup").modal({ autoOpen: true, responsive: true, clickableOverlay: false, modalClass: 'modal-custom', title: 'Popup', buttons: [{ text: $.mage.__('Take me back to the homepage'), class: 'action close-popup wide', click: function () { window.location.href = '/'; } }] }); …

1
组件与小部件
在Magento 2中,组件和小部件之间有什么区别?例如,有一个模态组件和一个模态小部件,它们看起来都在做相同的事情。 零件 所述模态UI组件实现了在主窗口的顶部打开一个辅助窗口。它使用模式小部件。 小部件 所述的Magento模态小部件实现了在主窗口的顶部打开一个辅助窗口。 可以使用几行JS来初始化该小部件,其中,由于该组件需要许多行XML,并且仍然使用该小部件。那么,为什么有人会使用XML方法呢?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.