Questions tagged [uibinder]

The UiBinder framework allows you to build your apps as HTML pages with GWT widgets sprinkled throughout them.

Useful links:

778 questions
0
votes
1 answer

Opening a presenter in a new window in GWTP

Currently, i have to implement a print functionality. I had used a pop up presenter on click of a print button, to print the contents of only the pop up panel. but its also printing the contents of the background of the popup panel. Is there any…
yogish
  • 85
  • 17
0
votes
1 answer

How to embed links (anchor tag) into HTML context from UIBINDER in gwt

I have a HTML widget in my ui.xml which I am using in Uibinder to populate data as given below: ui.xml ->
0
votes
2 answers

Events handling in GWT

I want to do something like this: I want a cell table in which each cell is a class which I have written. I need to add a click event for the cell table. So How can I get which cell was clicked. As Cell is a class which I have defined, based on the…
Global Warrior
  • 5,050
  • 9
  • 45
  • 75
0
votes
1 answer

SplitLayoutPanel inside DisclosurePanel

When nesting a SplitLayoutPanel inside a DisclosurePanel the SplitLayoutPanel is not displayed, when openening the DisclosurePanel using relative height attributes (e.g., 100%). Inspecting the generated HTML yields that the row containing the…
Florian Pilz
  • 337
  • 1
  • 12
0
votes
2 answers

adding eventhandler to custom textbox field

Good day I have a custom TextBox that has a IndicatorTextBox.ui.xml file as well as IndicatorTextBox.java file. Ussually adding an evenhadler to a textbox is simple. This is in my main .java file @UiHandler("txtFirstName") void…
Arianule
  • 8,811
  • 45
  • 116
  • 174
0
votes
1 answer

GXT: UiBinder new instance of a Widget

I have a TextField form inside a window. Created with UiBinding. Next to the TextField is a button. I wanted to know if it was possible to create a new TextField widget when that button was pressed using UiBinder? This is what I have: Window…
lmcadory
  • 2,149
  • 3
  • 14
  • 15
0
votes
1 answer

Naming an event handler under GWT UIBinder

Are there special restrictions for naming an event handler under GWT UIBinder? UI template: Below are some of valid variants i've seen, for naming the click event handler of the button ('/' symbolically separates…
sof
  • 9,113
  • 16
  • 57
  • 83
0
votes
1 answer

Why SimpleBeanEditorDriver returns null values

I have a SimpleBeanEditorDriver to edit my account bean but i always get null values when i edit and call flush(). i checked everything, Google documentations, stackoverflow, google groups but didn't find any problem like. did i miss something ?…
Adelin
  • 18,144
  • 26
  • 115
  • 175
0
votes
1 answer

error in adding an image as a managed resource(Ui binder)

I am trying to add an image as a managed resource in UiBinder Gwt but get an error along the line of 'Element my only contain one child element' How can I alter my code to overcome the error. this is my xml file.
Arianule
  • 8,811
  • 45
  • 116
  • 174
0
votes
1 answer

Changing the background color of textbox java UiBinder

I want to change the background color of a textbox as an indicator that it is being validated. .textBoxColor { background-color: #FF6EB4; } and then if(firstName.equals("")) { …
Arianule
  • 8,811
  • 45
  • 116
  • 174
0
votes
1 answer

Cleaning up my customLabel with CSS

I am customizing a label and placed the name of the label in the one cell of a grid and an asterisk(image) in the next cell.
Arianule
  • 8,811
  • 45
  • 116
  • 174
0
votes
2 answers

GWT client side file upload

I can upload a file with the HTML element inputfile then get the byte stream of this file through FileReader. After calling the function reader.readAsBinaryString(blob) as shown in the "Slicing a file" example I now need to gain an access to the…
0
votes
1 answer

Listbox outofbound error

I have a trying to put value from arrayList to List box. but it gives me error out of bound exception. getListValue() returns arrayList. for(int i = 0;i
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

GWT popup panel is Transparent??

I am using Gwt , I have a Label. On the onClick Event there is a PopupPanel, Whre tree is added. the problem is the the popupPanel is transparent. when the popup.show is executed , the panel behind popupPanel is seen through the popupPanel. How to…
NewCodeLearner
  • 738
  • 3
  • 14
  • 38
0
votes
2 answers

How to build JSP/JSF like UiBinder tags in GWT?

I've used JSP tag libs, freemarker, tiles, JSF-Facelets extensively in the past. Similar to their use of taglibs, is there anyway I could do the following in GWT UiBinder: 1) Composition: create a tag library in UiBinder (no java code) and include…
pri
  • 1,533
  • 4
  • 19
  • 29
1 2 3
51
52