I have div like
var d=dojo.byId('elem');
and I want to put three buttons in d from my code ( when I click on some other div, I have connect on click event). I tried
var button = new dijit.form.Button({
label: "Click me!",
onClick: function() {
}
},
"progButtonNode");
and
d.appendChild(button);
but it doesn't work. Can anybody help ?