EstebanJBO
16 Jan 2012, 8:57 AM
Hi guys.
I'm new in this forum and I recently begin to use GXT.
I'm developing a web application where I need it to be full size inside the browser, i managed to do this by the next code:
package com.packfa.client;
import com.extjs.gxt.ui.client.widget.Viewport;
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
public class Main implements EntryPoint {
public void onModuleLoad() {
Viewport v = new Viewport();
v.setLayout(new FitLayout());
HomePage homePage=new HomePage();
v.add(homePage);
RootPanel.get().add(v);
}
}
and the question is: is there a way to put the entire application on a full window whit no URL fields and no Tabs to make the look and fill more like an independent application but still inside the browser?, i know applications like pencil project that works this way, is possible to make this in GXT?, how can i do it?
Thanks.
I'm new in this forum and I recently begin to use GXT.
I'm developing a web application where I need it to be full size inside the browser, i managed to do this by the next code:
package com.packfa.client;
import com.extjs.gxt.ui.client.widget.Viewport;
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
public class Main implements EntryPoint {
public void onModuleLoad() {
Viewport v = new Viewport();
v.setLayout(new FitLayout());
HomePage homePage=new HomePage();
v.add(homePage);
RootPanel.get().add(v);
}
}
and the question is: is there a way to put the entire application on a full window whit no URL fields and no Tabs to make the look and fill more like an independent application but still inside the browser?, i know applications like pencil project that works this way, is possible to make this in GXT?, how can i do it?
Thanks.