JavaScript libraries like jQuery have the ability to dynamically add/remove classes to DOM elements like so:
$("#some-element").addClass("make-me-pretty");
This is important because it allows you to dynamically apply different styling rules to those elements.
In GWT-land, you might have a UiBinder XML snippet like this:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:gwt="urn:import:com.google.gwt.user.client.ui">
<div>
<span id="">Some content</span>
<gwt:RadioButton ...>
...
</gwt:RadioButton>
<!-- etc. -->
</div>
</ui:UiBinder>
- For the non-Widget elements, such as the
<span>, how can I dynamically add/remove classes in the Java code? - Speaking of
<gwt:RadioButton>, I can't seem to find GWT's reference XSD for UiBinder XML, or some kind of official reference to the legal definitions for all the elements and attributes ofcom.google.gwt.*XML. For instance, where can I find documentation for what child elements and attributesgwt:RadioButtonsupports? And not just for that one widget, for all of them! Can someone point me in the right direction?
Thanks in advance!