MindBrain
MindBrain

Reputation: 7768

Resizing the layoutpanel in gwt

I am having difficulty resizing a table which is inside a container panelin gwt. The table is not resizing on resizing the outer panel and thus I need a fix to this. I cannot post the code as the code is too long. Thank you for your help.

Upvotes: 0

Views: 534

Answers (1)

Steven Morad
Steven Morad

Reputation: 2617

You may want to try something like:

setSize(Window.getClientWidth()*1/4+"px", Window.getClientHeight()*1/4+"px")

Upvotes: 1

Related Questions