My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
GwtExt  
Updated Feb 4, 2010 by james.st...@gmail.com

The GwtExt support in UFace lets you deploy your UFace application using GWT with the gwt-ext widget library which uses the excellent ExtJS library.

UIComposite

To be able to create widgets with UFace you need to get a UIComposite to represent the Panel you are gonna add widgets to. You can see this in action in the org.ufacekit.ui.gwtext.example.

You can create a UIComposite as follows in your EntryPoint

public class MyApp implements EntryPoint {

    public void onModuleLoad() {
        RootPanel rootPanel = RootPanel.get();
        UIComposite root = new GwtExtComposite(rootPanel);

        // now I can create some UI components
        UIFactory factory = root.getFactory();
        factory.createTable(root, ...);
    }
}
Comment by loulou8...@gmail.com, Jul 8, 2008

hi iii

Comment by mail.nu...@gmail.com, Aug 26, 2008

hi

Comment by cdia...@gmail.com, Jan 5, 2009

hi there

Comment by peter.t....@gmail.com, Mar 31, 2009

Hiya


Sign in to add a comment
Powered by Google Project Hosting