How to set up a form popup-modal in Magento 2
To set up a form popup-modal in Magento 2, use Magento_Ui/js/modal/modal widget as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
require([ 'jquery', 'jquery/ui', 'Magento_Ui/js/modal/modal' ], function($){ $('<div />').html('Modal Window Content') .modal({ title: 'My Title', autoOpen: true, closed: function () { // on close }, buttons: [{ text: 'Confirm', attr: { 'data-action': 'confirm' }, 'class': 'action-primary', click: clickCallback }] }); }); |
Source (