You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Closure Library Discuss
I am trying to implement button dynamically.
Here is my code:
.............
var button = new goog.ui.Button('Hello!');
button.render(goog.dom.getElement('buttonDiv')); // button div in
HTML
.............
the contents of my css file are:
.............
.className {
background-color:red;
}
#idName {
color:blue;
}
.............
The style corresponding to class is working while the one with id is
not working. Is it that 'setId' used is wrong?
Help!