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...
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 |...
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 ".....
1
Solved
GWT (2.7) Compile fails when declaring a GwtQuery (1.0.6) Widget in UiBinder in GWTP (1.5.1) project
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"
...
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...
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...
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...
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...
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, ...
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...
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 ...
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...
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 ...
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...
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...
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...
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 ...
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...
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...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.