uibinder Questions

2

Solved

In my mark-up I want to add a space ( ) between elements without always having to use CSS to do so. If I put   in my markup, GWT throws errors. Is there a way around it? For exam...
Elative asked 18/9, 2013 at 21:53

3

Solved

Assuming the following *.ui.xml file: <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:VerticalPanel> <g:Label ui:fiel...
Flopeared asked 24/2, 2011 at 13:35

2

Solved

We have an existing UI built with UIBinder whose ui.xml file contains the following hierarchy: <ui:UiBinder> <div> Multiple <span> or <a> separated by verbatim HTML (like |...
Face asked 27/6, 2011 at 14:24

4

I am developing a couple of custom widgets that I would like to be able to use with UiBinder. Unfortunately I keep wasting my life away with chasing down the following error: No class matching ".....
Mora asked 6/11, 2012 at 3:26

1

Solved

When I simply just declare a GwtQuery DragAndDropCellTree in my MyView.ui.xml UiBinder in my GWTP project, I cannot GWT Compile it: [3] xmlns:gq="urn:import:gwtquery.plugins.droppable.client.gwt" ...
Singleness asked 18/11, 2015 at 16:37

2

Solved

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 t...
Cladoceran asked 21/3, 2011 at 19:11

2

Solved

I have the need to apply many separated CSS classes into 1 element in UiBinder in GWT, but don't know how to do it. In my TestView.ui.xml, i have <g:Button text="Log Out" ui:field="logoutButto...
Wartime asked 19/9, 2013 at 4:55

3

Solved

I'm trying to declare these elements in my UiBinder XML: <label for="lastName">Last Name:</label> <input type="text" id="lastName" ui:field="lastNameField" maxlength="150" /> S...
Harod asked 17/4, 2013 at 21:57

2

Solved

I'm creating a page with a navigation menu on the left, containing icons for each section. The page layout looks something like this: <g:DockLayoutPanel unit="PX"> <g:west size="55">...
Pridemore asked 21/5, 2012 at 17:42

3

Solved

I just created widget: public class myWidget<T> extends FlowPanel { private T value; public T getValue() { return value; } public myWidget(T[] values) { for (T value : values) { //do a...
Gentility asked 9/8, 2012 at 16:35

2

Solved

Can I use enum values as field values inside UiBinder template ? I'm using GWT 2.4 Something like this <ui:with field="en" type="com.mine.courierApp.shared.PayerType" /> looks promising, ...
Lien asked 29/2, 2012 at 2:12

3

Solved

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 h...
Antinomian asked 17/11, 2010 at 13:44

6

Solved

I would like to implement menus (MenuBar, MenuItem) using the declarative approach via UiBinder in GWT 2.0. I have run into two problems: Is there a way to add MenuItemSeparators in the .ui.xml ...
Edmee asked 21/1, 2010 at 8:9

2

Solved

I am trying to understand the UIBinder concept in GWT. I went through couple of tutorials online. Here is my question: 1) Why exactly one would want to use UIBinder? Is it only because we would be...
Drava asked 17/4, 2013 at 4:45

2

Solved

ValueListBox doesn't implement HasEnabled interface, so I can't disable/enable it. And although ListBox implements HasEnabled, method getListBox is private in ValueListBox. So I cannot get inner ...
Vorticella asked 4/5, 2011 at 5:23

2

I want to implement this example of celllist with one modification. I want to make each row to a grey color once its clicked by someone. It should persist there, and not change as the user clicks o...
Nett asked 11/12, 2013 at 3:19

2

Solved

Google suggets use FlowPanel in replace of VerticalPanel since VerticalPanel does not work well in Standards Mode (http://www.gwtproject.org/doc/latest/DevGuideUiPanels.html). myflowPanel.getEleme...
Catchword asked 9/10, 2013 at 5:58

6

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" xmlns...
Footpoundsecond asked 12/1, 2010 at 22:37

5

Solved

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...
Telegraphy asked 30/6, 2011 at 16:4

3

Solved

When using UiBinder what is the preferred method of creating a simple layout like this? FlowPanel: <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xml...
Cellist asked 20/1, 2012 at 8:26

1

Solved

I want to use GWT bootstrap for my application, so I added the jar to the classpath and inherited it in app.gwt.xml and it is working so far (I am new to Bootstrap). So far I haven't used UIBinder...
Nurmi asked 26/6, 2013 at 6:41

2

I've defined a suggestbox in UIBinder, and I need to dynamically set its SuggestOracle. All the examples I've seen show that you can only define the suggestoracle at instantiation, but I need to de...
Bascom asked 22/8, 2011 at 17:0

1

Solved

I would like to know which product of google written in GWT uses UiBinder. This would allow me to highlight the use case of UiBinder for our team/management. I am aware of following list of ...
Belisle asked 25/3, 2013 at 7:56

1

Solved

Can someone post an example of the shortest way of sharing a (preferably static final) string or number constant between Java code and UiBinder XML, where I can use the constant either in an attrib...
Wasp asked 8/2, 2013 at 17:49

2

Solved

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 docu...
Cargill asked 9/8, 2010 at 14:3

© 2022 - 2024 — McMap. All rights reserved.