The UiBinder framework allows you to build your apps as HTML pages with GWT widgets sprinkled throughout them.
Questions tagged [uibinder]
778 questions
29
votes
6 answers
How to declare dependent style names with UiBinder
I have a simple UiBinder widget containing a TextArea:
…

Eduard Wirch
- 9,785
- 9
- 61
- 73
23
votes
2 answers
Documentation for @UiHandler
I started to look into using GWT in combination with UiBuilder. I'm a bit puzzled about how you can use the @UiHandler(..) directive to make simple event handle code as written down in the GWT documentation:
@UiHandler("button")
void…

Roalt
- 8,330
- 7
- 41
- 53
22
votes
3 answers
How can I internationalize a GWT UIBinder page with Messages?
I am trying to internationalize a UIBinder application with property files. Since we have already a lot of translations exposed by the com.google.gwt.i18n.client.Messages interface (GWT 1.7.1), we would like to reuse these messages.
I have tried the…

Jan
- 1,306
- 2
- 10
- 25
19
votes
5 answers
How to use the GWT editor framework for validation?
I am trying to integrate with the new GWT Editor framework of GWT 2.1.0. I also want to add my validation checks into the framework. However, I am struggling to find a decent example how to do this.
For the moment I have the following…

Jan
- 1,306
- 2
- 10
- 25
18
votes
2 answers
How to create a gwt composite component with children using uibinder?
I would like to create a component to decorate its children, such as:
mycomponent.ui.xml:
and then others can use:
…

Julio Faerman
- 13,228
- 9
- 57
- 75
18
votes
3 answers
How do I add items to GWT ListBox in Uibinder .ui.xml template ?
How to add the listbox items using UiBinder?

Kasturi
- 3,335
- 3
- 28
- 42
18
votes
2 answers
add class name to element in uibinder xml file
The following replaces any current css class names. It appears to call setStyleName.
What I really want to do is add a class name, like calling addStyleName.
Is it possible to do what I'm…

antony.trupe
- 10,640
- 10
- 57
- 84
16
votes
3 answers
Trying to get UIBinder to give me a span not a div
I am building a widget with UiBinder, and I need to have it enclosed in a but UiBinder only gives me . E.g. => . HorizonPanel, FlowPanel, VerticalPanel also give out only .
Does any one know a solution?

user198313
- 4,228
- 6
- 24
- 19
16
votes
3 answers
How to layout widgets using DockLayoutPanel and UiBinder in GWT 2.0?
I'm trying to get a simple layout working under GWT 2.0 using UiBinder. The layout I'm trying to get is one that mimic Java's BorderLayout in where you can specify different panels in the north, south, east, west and center directions; for that I'm…

Cesar
- 5,488
- 2
- 29
- 36
15
votes
5 answers
How to handle single quotes in internationalization constants?
We define all our internationalized constant strings in a single properties file LocalizableResource_xx.properties (one per language) located in google.gwt.i18n.client.
This way it is possible to access the constants in Java code via the constants…

z00bs
- 7,518
- 4
- 34
- 53
15
votes
3 answers
GWT 2.1 UiBinder SimplePager requires location attribute
What can be provided to the location attribute of a
I tryed CENTER, but it didnt work, I see in the expense sample app that they dont have a location attribute but instead set it on the creation…

rapadura
- 5,242
- 7
- 39
- 57
15
votes
2 answers
Custom attributes in UiBinder widgets
I'm using GWT and UiBinder for my app, and I'm trying to do this
But the custom placeholder attribute won't work because there isn't a setPlaceholder method on…

Sudhir Jonathan
- 16,998
- 13
- 66
- 90
15
votes
1 answer
GWT UiBinder any way to have dynamic List of Widgets?
Class Foo has a variable List

Finbarr
- 31,350
- 13
- 63
- 94
14
votes
2 answers
UiBinder - HTMLPanel vs. div
Is there some sort of penalty when I'm using a HTMLPanel instead of a plain div?
E.g.
in contrast to
/* Widgets, more HTML */
…
/* Widgets, more HTML */

helpermethod
- 59,493
- 71
- 188
- 276
14
votes
1 answer
Extend GWT widget built using UIBinder
I'm trying to extend a GWT widget that is built using UIBinder. UIBinder expects the fields in ui.xml to be in the extended widget. The problem that was well described by 'Blessed Geek' on Google Groups. Any tips/tricks?

Eric Landry
- 638
- 1
- 9
- 22