开发者

full screen contentPanel ext gwt

I need to implement full screen ContentPanel in ext gwt. I use setSize method, but as params I can specify only resolution.

public class HomePage extends ContentPanel {

public HomePage() {

    setSize(1024,768);

I want to have panel that will fill all window in each browser with different monitor resolution. So how can I use setsize method to solve this problem开发者_StackOverflow中文版? Thanks!


Instead of setting the size, maybe try setting a layout that will expand. Maybe something like this (hasn't been tested):

setLayout(new FitLayout()); 


In GXT 3, I used:

private static final int WIDTH_SCREEN = XDOM.getViewportWidth();
private static final int HEIGTH_SCREEN = XDOM.getViewportHeight();

And after that use setWidth, setHeight

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜