Re: Extending widget built by UIBinder

2010-03-31 Thread Blessed Geek
It appears more likely that case#1 is the possibility. I had a parameter reference in UIPopup,ui.xml which I intended to define in UIPopup.java. Unfortunately, the same variable has been defined in the subclass and UIBinder intelligently assumed I wanted to use the variable in the subclass. I rena

Extending widget built by UIBinder

2010-03-30 Thread Blessed Geek
I have a class UIPopup which is coded with UIBinder. public class UIPopup extends DecoratedPopupPanel { private static PopupUiBinder uiBinder = GWT.create(PopupUiBinder.class); interface PopupUiBinder extends UiBinder{} @UiFactory public UIPopup getThis(){ return this; }