Tagged Questions
The UiBinder framework allows you to build your apps as HTML pages with GWT widgets sprinkled throughout them.
19
votes
5answers
5k views
How to declare dependent style names with UiBinder
I have a simple UiBinder widget containing a TextArea:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
...
12
votes
5answers
5k views
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.
...
12
votes
3answers
13k views
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, ...
10
votes
4answers
5k views
How do I style a gwt 2.1 CellTables headers?
I see nothing in the documentation except a reference to include some "CssResource" and get it with ClientBundle, but how do I exactly override the tbody and th of a CellTable?
Is this possible?
9
votes
1answer
2k views
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 ...
8
votes
2answers
1k views
GWT UiBinder any way to have dynamic List of Widgets?
Class Foo has a variable List<Button> bar, how can I render each of the buttons using UiBinder? Is it even possible?
8
votes
2answers
666 views
Is it possible to reuse GWT UIBinder panels?
I have a layout in Google Web Toolkit using UIBinder involving a TabLayoutPanel. This layout has the superset of all tabs that will be used by my app (think of it as an admin view).
I now need to ...
8
votes
4answers
4k views
GWT+UIBinder+Gin+Guice+JDO+GAE example
I'm trying to link all this technologies, but there are many isolated examples and I do not have enough experience to link them together
so my questions:
Whether there is a similar example?
Is it ...
8
votes
2answers
2k views
add class name to element in uibinder xml file
The following replaces any current css class names. It appears to call setStyleName.
<g:DecoratorPanel styleName="{style.myCssClass}">
What I really want to do is add a class name, like ...
6
votes
1answer
3k views
GWT 2.1 in UiBinder put Cell Widgets
How does it work?
I see no tags defined for example to add a CellTable in a UiBinder.ui.xml file, like
The documentation is sparse on this.
So if it doesnt work, where should I put the cell ...
6
votes
2answers
1k views
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:
<g:FlowPanel addStyleNames="myStyle">
<!-- how can i render children ? -->
...
6
votes
1answer
2k views
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 ...
6
votes
3answers
4k views
6
votes
1answer
845 views
What is this error Found widget <g:ListBox class='dropdownbx' name='deleteDigits' ui:field='deletedigs'> in an HTML context
I get this error when I run my Gwt app
Found widget in an HTML context
Here is a snippet of the xml that it complains about:
<!-- ... -->
<g:HTML ui:field="localPanel">
...
6
votes
3answers
3k views
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 ...
5
votes
1answer
451 views
Dynamically adding multiple GWT RadioButton groups
In my application I have a panel of widgets (all the same type of widget), and buttons that allow the user to add and remove widgets to the panel. Inside each of the widgets is a GWT RadioButton ...
5
votes
2answers
559 views
UiBinder - HTMLPanel vs. div
Is there some sort of penalty when I'm using a HTMLPanel instead of a plain div?
E.g.
<g:HTMLPanel>
<div>
/* Widgets, more HTML */
</div>
</g:HTMLPanel>
in contrast ...
5
votes
2answers
3k views
How to combine multiple uiBinder-based widgets?
I need to insert a [number of] uiBinder-based widgets into another one, at a particular spot. The inserted widget has a somewhat complicated layout, so I am trying to define it in HTML.
...
5
votes
2answers
3k views
Can't get SplitLayoutPanel working - GWT + UIBinder are driving me crazy
...
<g:VerticalPanel styleName="{style.mainVerticalPanel}">
<g:SplitLayoutPanel>
<g:north size="700">
<g:VerticalPanel>
<g:ScrollPanel ...
5
votes
3answers
2k views
GWT - How to define a Widget outside layout hierarchy in uibinder xml file
this is my first post. I hope someone could help me.
I'm looking for a way to define a widget in UiBinder XML layout file separately, without being part of the layout hierachy.
Here's a small ...
4
votes
1answer
517 views
UIBinder and MVP in GWT
When using the MVP pattern as described here in GWT, how do you create a presenter associated with a view when the view is part of another uibinder-defined view.
4
votes
1answer
185 views
How do you let UiBinder pass tags without binding them so XFBML works?
I have an application designed that's using GWT and UiBinder. Now we're trying to setup a login through facebook. I've included the script to init the fb javascript in my application's HTML, and I'm ...
4
votes
3answers
481 views
Eclipse autocompletion for GWT UiBinder (+ UiBinder documentation)
I am using UiBinder xml files in a GWT project. The problem is that Eclipse doesn't give me any info about what attribute I can use with the widgets
For example I know I can set width or style this ...
4
votes
3answers
5k views
Embeding a TabLayoutPanel inside a DockLayoutPanel
I'm trying to embed a TabLayoutPanel inside a DockLayoutPanel but the tabs are not showing up :(
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
...
3
votes
1answer
64 views
CSS selector not resolved when using UI Binder
Basically, I am building a horizontal navigation bar. I have following markup:
<ui:style src="../common.css" type="client.resources.HomeResources.Style">
@external gwt-Anchor;
...
3
votes
1answer
115 views
GWT UIbinder auto complete is very slow?
I am working on GWT2.3 with ecllipse ganymade 3.4 version.I am working on UIBinder.While working with UIBinder its auto complete feature (suggestions) is very slow.I am not getting what to do in this ...
3
votes
1answer
439 views
ClientBundle for multiple “themes”
We have a web application that needs a different theme for each major client. The original developer did this by looking at the URL in javascript and adding a stylesheet to override the default ...
3
votes
1answer
567 views
Mapping ui:field in GWT to generated code
I'm trying to get some automated UI testing going on a GWT application and I'm having trouble finding a way to track UI elements.
For example, I have the following:
<g:Button text="Submit" ...
3
votes
1answer
592 views
GWT declarative layout parent porperties
I've built a stackpanel like this
<g:StackPanel ui:field="ticketsPanel">
<g:VerticalPanel g:StackPanel-text="Tickets">
<g:Hyperlink targetHistoryToken='newTickets'>New ...
3
votes
2answers
3k views
GWT 2.1 UiBinder SimplePager requires location attribute
What can be provided to the location attribute of a
<c:SimplePager ui:field='pager' location='HERE' />
I tryed CENTER, but it didnt work, I see in the expense sample app that they dont have ...
3
votes
1answer
446 views
Custom tags in UiBinder files
When using a <g:LayoutPanel> in UiBinder.ui.xml files, you can specify <g:layer> tags. Some other Google-built widgets have special tags like that as well - <g:tab> even has a ...
3
votes
2answers
220 views
GWT Layout: “take up the rest of the space.”
My existing layout is a stack of two divs - g:layers in a LayoutPanel. The top div should be as big as it needs to be to contain its contents. The bottom div should take up the rest of the space on ...
3
votes
2answers
791 views
Custom attributes in UiBinder widgets
I'm using GWT and UiBinder for my app, and I'm trying to do this
<g:TextBox ui:field="searchBox" styleName="{style.searchBox}" placeholder="search" />
But the custom placeholder attribute ...
3
votes
2answers
451 views
Duplicating the <g:tab> element of GWT's TabLayoutPanel
I've found the GWT tab panels clunky for the styling I need to do, so I'm trying to make my own, simple tab panel. Basically an HTML5 <nav> element for tabs and a DeckPanel to display the ...
3
votes
2answers
861 views
Need app-wide CSS constants in GWT
I'd like to define some colours as constants in a GWT CssResource, and use those constants throughout my application; but I don't know how to do that.
I'll tell you what what I've tried. I've created ...
3
votes
1answer
934 views
Using uibinder with SmartGWT?
Is it possible to use UiBinder with SmartGWT at all? I've heard that at the moment it's impossible, though there are efforts to bridge the gap. How are those efforts? Have they yielded any ...
3
votes
3answers
1k views
GWT uibinder composite
I'm creating a composite uibinder widget with a Label and a TextBox.
The intented use is:
<x:XTextBox ui:field="fieldName" label="a caption" >
The text to be put in the box.
...
3
votes
2answers
438 views
Which is better in GWT?
which is better in GWT interface, using the normal MVP with javacode, or UiBinder?? from performance, editing, simplicity aspects.
3
votes
1answer
2k views
GWT: use the same UI template for multiple pages?
how can I use the same UI template (*.ui.xml file) with multiple Java objects extending from Composite?
I need to build several pages that should display basically the same information with the ...
3
votes
2answers
2k views
GWT UiBinder doesn't load the stylesheet
I wanted to make a GWT widget using UiBinder. So I made:
UserPanel.ui.xml like this:
<?xml version="1.0" encoding="UTF-8"?>
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
...
3
votes
3answers
2k views
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 span but UiBinder only gives me divs. E.g. HTMLPanel => div, HorizonPanel, FlowPanel, VerticalPanel all divs...
Does any one ...
2
votes
1answer
39 views
gwt uibinder in an abstract parent class
i'm wondering if there's a way to build the gwt uibinder logic into an abstract parent class so that i don't have to repeat the code in every class i want to bind.
for example, i'd like to be able to ...
2
votes
1answer
38 views
Will referring to a single ClientBundle class from multiple UiBinders cost anything?
I have a single ClientBundle with css resources that are needed throughout the application - default background colors, common layout patterns, etc.
A stated design goal from GWT is that there be "no ...
2
votes
2answers
207 views
How To: UiBinder + GWT MVP + multiple independent display areas
I am using GWT MVP and UiBinder to create an app with a DockLayoutPanel. I want the north and south docks to be static, containing buttons and links. I want to have dynamic views in the center and ...
2
votes
1answer
92 views
GWT g:Anchor doesn't show up as a link
I've just started learning UiBinder approach and having a stupid problem with g:Anchor. Whenever I construct Anchor directly from Java code, it's displayed as a "normal link", so it's blue, underlined ...
2
votes
2answers
139 views
Is it possible to reference enums in a GWT UiBinder context
I have an enumeration that looks like the following
public enum MyEnum {
A,
B;
}
And then I have a UiBinder file with a custom component that has a setter and getter expecting the enum ...
2
votes
4answers
457 views
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 ...
2
votes
1answer
99 views
Resources for digging in GWT's Uibinder and Declarative UI
I am a student getting started with web development with GWT. I have previous experience with Java however I am no UI design experience.
However I believe I can catch up on CSS easily.
I was ...
2
votes
1answer
360 views
how to include one page in another in gwt ui.xml
I want to have some menu on all pages, and my idea is to create one page for that and include it in all other. Is it possible?
2
votes
1answer
265 views
UIBinder: how to structure CSS layout for designers
Our webapp is implemented in GWT 2.2, with heavy use of UIBinder. I really like UIBinder's ability to define styles either inline with the HTML, or at least in a <ui:style> section. As a ...