Reputation: 7768
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
Reputation: 2617
You may want to try something like:
setSize(Window.getClientWidth()*1/4+"px", Window.getClientHeight()*1/4+"px")
Upvotes: 1