How to create a popup (modal) window on button click in Magento 2 admin
Youк popup window can be based on the following example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<div id="messages"> ... </div> <script type="text/javascript">// <![CDATA[ require([ 'jquery', 'Magento_Ui/js/modal/alert' ], function($, alert) { $('#messages').on('click', 'button.primary', function(event){ alert({ content: $(event.target).parent().text() }) }) } ); // ]]></script> </div> |
Source (
More Magento 2 tips from the Cookbook