MayoMan
MayoMan

Reputation: 4917

Building a GWT UI in Eclipse

I want to try and build a UI using this GWT designer tool I read about. I have GWT tools installed, created a "Google -> Web Application Project" but I don't see any means to build a UI except via code. I tried installing the plugin http://dl.google.com/eclipse/inst/d2gwt/latest/3.7 but it fails ( Not sure if I need this or not )

This is the tutorial I was looking at ..... How do I get this UI design view? https://developers.google.com/web-toolkit/tools/gwtdesigner/quick_start

Upvotes: 2

Views: 5241

Answers (2)

General Waters
General Waters

Reputation: 1139

Another alternative to using the GWT Designer, if you don't want to use UiBinder, is

  1. In Eclipse, right-click view class in Package Explorer
  2. Open With
  3. GWT Designer
  4. Select the Designer tab at the bottom of the class window.

enter image description here

Upvotes: 1

Saeed Zarinfam
Saeed Zarinfam

Reputation: 10180

First from new file dialogue ( Ctrl + N ) create a UiBinder file (xxx.ui.xml):

enter image description here

Then select "Design" from left bottom of opened file in eclipse.

enter image description here

Upvotes: 0

Related Questions