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...
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...
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...
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...
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: ...
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...
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.
3
Solved
Right now I have the following code working:
@UiHandler("usernameTextBox")
void onUsernameTextBoxKeyPress(KeyPressEvent event) {
keyPress(event);
}
@UiHandler("passwordTextBox")
void onPasswordT...
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...
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...
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...
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...
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&...
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;
...
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...
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...
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?
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...
© 2022 - 2024 — McMap. All rights reserved.