Dojo Dialog
by seo gyeongseok
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.1/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/dojo/1.6/dijit/themes/claro/claro.css">
JavaScript
require(["dijit/Dialog"], function (Dialog) {
var foo = new Dialog({
style: 'width:500px; height:500px;',
title: "test",
content: "<div style='width:100%; height:100%;'>test content</div>",
resize: function () {
// do nothing
console.log('test', arguments);
}
});
foo.startup();
foo.show();
});