com.smartgwt.mobile.client.widgets.Popover is too small for iPad (for smartgwt-mobile.jar 14-apr-2016)
1. How can I increase Popover size ? It looks good on smartphones but ignores all the growing commands on iPad
and even CSS commands (with or without !important)
2. Workaround - I tried to use 2 * ScrollablePanel(s) but
- ScrollablePanel do not accept (at runtime) to be a simple widget in a Panel or VLayout
- ScrollablePanel always occupy the full screen starting at top = 0, overwriting anything on screen (so he can only contain everything else)
- workaround final solution for iPad = ScrollablePanel with 2 Panels and butons for user to decide for other solutions, including new page
3. What other popups (no size limits) with scrollable areas do you have in the library ?
1. How can I increase Popover size ? It looks good on smartphones but ignores all the growing commands on iPad
Code:
popover.setWidth( "100px"); //300
popover.setHeight( "100px");//"400px"); //300
Code:
.popover{
max-width: 650px !important;
max-height: 400px !important;
}
#BioPopover{
max-width: 800px !important;
max-height: 500px !important;
width: 800px !important;
height: 500px !important;
}
- ScrollablePanel do not accept (at runtime) to be a simple widget in a Panel or VLayout
- ScrollablePanel always occupy the full screen starting at top = 0, overwriting anything on screen (so he can only contain everything else)
- workaround final solution for iPad = ScrollablePanel with 2 Panels and butons for user to decide for other solutions, including new page
3. What other popups (no size limits) with scrollable areas do you have in the library ?
Comment