I'm not good at js just learning and understand nothing yet. Mb who can tell why the modular window does not open? I took the code from this site https://dojotoolkit.org/reference-guide/1.10/dijit/Dialog.html there opens I don’t have a problem?
<!DOCTYPE html> <html > <head> <link rel="stylesheet" href="../_static/js/dojo/../dijit/themes/claro/claro.css"> <script>dojoConfig = {parseOnLoad: true}</script> <script src='../_static/js/dojo/dojo.js'></script> <script> require(["dijit/Dialog", "dojo/domReady!"], function(Dialog){ myDialog = new Dialog({ title: "My Dialog", content: "Test content.", style: "width: 300px" }); }); </script> </head> <body class="claro"> <button onclick="myDialog.show();">show</button> </body> </html>