SmartGWT mobile.beta, showcase (the current version)
If I open the showcase by Safari browser with User-Agent=iPad - everything is fine (ipad.jpg)
If User-agent=iPhone or iPod - the application is rendered incorrectly and it highght becomes more then the visible screen (iphone.jpg).
The same happened when SmartGWT mobile is deployed to the real device (real.PNG)
How can I adjust the application to have it rendered correctly?
Source code is pretty simple:
About and Overview classes are equal to same classes from the showcase.
If I open the showcase by Safari browser with User-Agent=iPad - everything is fine (ipad.jpg)
If User-agent=iPhone or iPod - the application is rendered incorrectly and it highght becomes more then the visible screen (iphone.jpg).
The same happened when SmartGWT mobile is deployed to the real device (real.PNG)
How can I adjust the application to have it rendered correctly?
Source code is pretty simple:
Code:
tabset = new TabSet(); tabset.addPanel(new Overview()); tabset.addPanel(new About()); RootLayoutPanel.get().add(tabset); tabset.selectTab(1);
Comment