Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
  1. For the non-Widget elements, such as the <span>, how can I dynamically add/remove classes in the Java code?
  2. 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 of com.google.gwt.* XML. For instance, where can I find documentation for what child elements and attributes gwt:RadioButton supports? And not just for that one widget, for all of them! Can someone point me in the right direction?

Thanks in advance!

share|improve this question

3 Answers

up vote 2 down vote accepted

You can find the UiBinder.xsd in gwt-user-<version>.jar (At least from 2.4.0 onwards, but I suspect older versions as well).

As for your other question: You can always traverse the DOM using

yourUi.getElement().getElementsByTagName( "span" )

and find the Element with the matching id, but that isn't very elegant. I actually have never encountered this situation; it is an interesting question!

Hope that helps.

Cheers,

share|improve this answer
Thanks @Anders Rostgaard Bystru (+1) - I'll take a look here in a second. Any ideas about the dynamic adding/removing of classes for non-Widgets? Thanks again! – TicketMonster Nov 8 '12 at 11:54

To any UIobject (including RadioButton) you can:

yourUI.addStyleName("your-class");

in GWT: styleName = class

More UIObject methods

share|improve this answer
While correct, I believe orionTurtle asked how to programmatically change style on a non-@UiField element in the binder. – Anders R. Bystrup Nov 8 '12 at 12:22

I think you can do something like this. Map your as a UI field to a GWT 'SpanElement'.

<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'>
  <div>
    Hello, <span ui:field='nameSpan'/>.
  </div>
</ui:UiBinder>

In your class that binds to the above ui.xml file, you could change the class as follows

      interface MyUiBinder extends UiBinder<DivElement, HelloWorld> {}
      private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);

      @UiField SpanElement nameSpan;

      public HelloWorld() {
        setElement(uiBinder.createAndBindUi(this));
      }

      public void changeClass(){
           nameSpan.setClassName("newClass");
      }   
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.