2021-12-19 13:39:31 +00:00
|
|
|
define([
|
|
|
|
"dijit/_TemplatedMixin",
|
2021-12-19 14:05:22 +00:00
|
|
|
"dijit/_AttachMixin",
|
2021-12-19 13:39:31 +00:00
|
|
|
"dijit/_WidgetBase",
|
2021-12-19 14:05:22 +00:00
|
|
|
"dojo/_base/declare"
|
|
|
|
], function(_TemplatedMixin, _AttachMixin, _WidgetBase, declare, template) {
|
|
|
|
return declare("app/widgets/MainWidget", [_WidgetBase, _AttachMixin, _TemplatedMixin], {
|
|
|
|
templateString: "<div>"
|
|
|
|
// + "Hello World!!! <input data-dojo-type=\"dijit/form/TextBox\" />"
|
|
|
|
// this works as it's dijit
|
|
|
|
+ "<div data-dojo-type=\"./ChildWidget\"></div>"
|
|
|
|
// this doesn't work as it's trying to fetch ./node_modules/dojo/ChildWidget which seems to be
|
|
|
|
// relative to dojo/parser dojo/parser
|
|
|
|
+ "</div>"
|
2021-12-19 13:39:31 +00:00
|
|
|
});
|
|
|
|
});
|