Hi,
I have a issue like below.
I have smart gwt application with 30+ pages in different sizes with header and footer.
header and footer is the 1st and 3rd member in the VLayout. The 2nd member is menu obj, the value is changing as user selects the tab.
Issue Ex:
Step1 : Initially home page load i dont see any browser horizontal or vertical scrolls.
Step2 : I accessed one page in the menu. The page height and width is more than the scree/browser window size. so i got both browser horizontal and vertical scrolls.
Step3 : Again come back to the home page, whose size is exactly equal to the scree/browser window size. But still here i am able to see both browser horizontal and vertical scrolls. During horizontal or vertical scroll, i was able to see empty space/gaps on the browser. These gaps i am not able to select user IE browser development console (F12).
Expecting results : Browser size (Height and Width) should change according to the requested page size. horizontal and vertical scrolls should appear if the size of the tab is exists the size of the screen/browser window.
Here is the example code. Only the change is happing for menu object whenever new tab/menu selected.
VLayout mainLayout = new VLayout();
mainLayout.setWidth100();
mainLayout.setHeight100();
mainLayout.addMember(header);
mainLayout.addMember(menu);
mainLayout.addMember(footer);
mainLayout.draw();
Attached images shows the information of Step1, 2, 3.
Appreciate any one earlier help.
Thanks,
Hari.
I have a issue like below.
I have smart gwt application with 30+ pages in different sizes with header and footer.
header and footer is the 1st and 3rd member in the VLayout. The 2nd member is menu obj, the value is changing as user selects the tab.
Issue Ex:
Step1 : Initially home page load i dont see any browser horizontal or vertical scrolls.
Step2 : I accessed one page in the menu. The page height and width is more than the scree/browser window size. so i got both browser horizontal and vertical scrolls.
Step3 : Again come back to the home page, whose size is exactly equal to the scree/browser window size. But still here i am able to see both browser horizontal and vertical scrolls. During horizontal or vertical scroll, i was able to see empty space/gaps on the browser. These gaps i am not able to select user IE browser development console (F12).
Expecting results : Browser size (Height and Width) should change according to the requested page size. horizontal and vertical scrolls should appear if the size of the tab is exists the size of the screen/browser window.
Here is the example code. Only the change is happing for menu object whenever new tab/menu selected.
VLayout mainLayout = new VLayout();
mainLayout.setWidth100();
mainLayout.setHeight100();
mainLayout.addMember(header);
mainLayout.addMember(menu);
mainLayout.addMember(footer);
mainLayout.draw();
Attached images shows the information of Step1, 2, 3.
Appreciate any one earlier help.
Thanks,
Hari.
Comment