uibinder Questions

2

Solved

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 sub...
Quartering asked 3/11, 2010 at 0:16

3

Solved

I'm writing a widget with the following markup: <g:HTMLPanel ui:field="shortcutPanel" styleName="{style.shortcut}"> <g:Image ui:field="shortcutImage"></g:Image> <span ui:fie...
Lecialecithin asked 6/4, 2010 at 19:14

3

Solved

I'm learning GWT and trying to wrap my head around all the UI options. I'm having trying to make sense of when/where/how to use Widgets, UIBinder, GWT Designer and custom Widgets. Specifically: W...
Reservoir asked 7/9, 2012 at 12:37

2

Solved

In java code we can set id. Is it possible to set 'id' for GWT widgets in UiBinder itself? If it is possilbe please give me a sample. Actually I tried the following code, <g:Button ui:field...
Minardi asked 7/8, 2012 at 12:3

3

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 crea...
Unlookedfor asked 20/8, 2010 at 17:12

1

Solved

If I define my CellTable in MyView.ui.xml UiBinder file like this: <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' xmlns:c="urn:import:...
Detached asked 2/8, 2012 at 10:16

1

Solved

Trying to extend AbsolutePanel, my UiBinder won't allow the <g:at> element which is normally ok for straight AbsolutePanels. How do I make my AbsolutePanel subclass able to use the <g:at&g...
Seasickness asked 2/8, 2012 at 16:50

2

I am new to GWT and trying to making a page which is trying to inherit a composite widget but the value of the composite widget is dynamic. My main page is somehting like: ..... ..... <g:Bu...
Rupe asked 14/7, 2012 at 23:7

2

Solved

I'm using GWT 2.4 with gwt-platform 0.7 and gin 1.5.0. I've built a library for dynamic (live) translation of my GWT application. So every widget will get notified when the LocaleChangeEvent gets ...
Handbag asked 11/7, 2012 at 13:59

2

Solved

I declare some colors for the border of a VerticalLayout panel, like in: <ui:style> .onMouseOverBorderColor {border-color: red; border-style: outset} .onMouseOutBorderColor {border-color: ...
Solenoid asked 15/7, 2011 at 10:16

1

Solved

I'm using GWT with UiBinder and I somehow can't manage to get the default CSS style rules to work correctly. So far, I've been successfully styling my components by assigning custom CSS class names...
Samaritan asked 27/5, 2012 at 12:22

1

Solved

I have a problem with internationalization. I'm trying to implement support two languages ​​in my GWT application. Unfortunately I never found a complete example how to do it with the help of UiBin...
Relive asked 11/5, 2012 at 3:7

3

Solved

How do I use SplitLayoutPanel with UIBinder? I've tried so many different things but none of them work properly.
Couperin asked 22/3, 2010 at 14:47

3

Solved

Right now I have the following code working: @UiHandler("usernameTextBox") void onUsernameTextBoxKeyPress(KeyPressEvent event) { keyPress(event); } @UiHandler("passwordTextBox") void onPasswordT...
Winy asked 8/3, 2012 at 14:54

2

I'm trying to use an image from a ClientBundle as a background-image in a UIBInder template. I used this discussion as a guide, but was unable to get it to work. In my Java class I have: public s...
Mush asked 18/3, 2011 at 15:39

2

Solved

How do you remove defaul GWT style from CaptionPanel widget ? In my .ui.xml I tried pretty much everything. I tried setting stylePrimaryName and styleName to my classname. I also tried defining .g...
Banquette asked 20/2, 2012 at 4:17

1

Solved

Could you guys tell me why css class definition doesn't work in following example ? I'm using GWT 2.4 + Chrome 17. <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:c...
Tolkan asked 20/2, 2012 at 2:30

1

Solved

I'm trying to setup a flextable with uiBinder. I'm using GWT 2.4 and I know how to do a flextable, but not with uiBinder. I found this question: How can I add rows to a Google Web Toolkit flextable...
Potentiality asked 19/12, 2011 at 18:18

1

Solved

I've faced with a task to create custom widget, it has container behavior -- 3 panels inside. And i would like to use it in general UIBinder way like CustomButton <u:MyWidget> <u:image&...
Cothurnus asked 4/12, 2011 at 13:4

2

Solved

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 ...
Fry asked 23/11, 2011 at 15:33

1

Solved

Simple example. I have 2 styles declared in UiBinder: <ui:style> .success { font-size: 13px; margin: 15px; font-weight: bold; display: inline; padding: 3px 7px; background: #FFF1A8; ...
Thoreau asked 23/11, 2011 at 7:51

1

Solved

Im using obfuscated styles eg. <ui:style> .explanation { text-align: center; } </ui:style> ... <g:HTMLPanel> <div class="{style.explanation}"> ... Is this bad prac...
Mensch asked 16/11, 2011 at 7:12

2

Solved

I'd like to use the following in UIBinder, so that I can programmatically set the href of the link in my code. <g:HTMLPanel> <g:Anchor ui:field="link"> <g:InlineLabel ui:field="fi...
Coverlet asked 26/2, 2011 at 16:35

4

Solved

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?
Dichogamy asked 16/11, 2010 at 13:40

2

Solved

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 w...
Obadias asked 15/10, 2010 at 4:27

© 2022 - 2024 — McMap. All rights reserved.