Figured it out:
require(["dojo/dom", "dojo/domReady!"], function(dom){
dojo.parser.parse(dojo.byId("myDiv"));
});
Need to make sure that the DOM is ready as opposed to when the...
Type: Posts; User: AlternativeMind; Keyword(s):
Figured it out:
require(["dojo/dom", "dojo/domReady!"], function(dom){
dojo.parser.parse(dojo.byId("myDiv"));
});
Need to make sure that the DOM is ready as opposed to when the...
Ok today I am on a roll on answering my own questions, and asking new ones. Hopefully this will be helpful for those running into similar issues.
Ok, so the parseOnLoad: false is to force you to...
Ok, I have managed to resolve my issue, not really sure why it's set-up this way, but here it goes.
I had the same issue as the poster. I also had the added issue of misused require:
...
Hi everyone, I am running into the exact same issue as the OP.
I took some simple component such as a button, and placed it into index.jspx for a Roo-created Spring MVC project.
Now, if I...