Hi,
I'm having a problem with a scrollbar but only in Chrome. When i open my site, the scrollbar is sequentially hiding/showing itself. The sizes used in the onResized() look like this:
Does anyone know what can cause that?
Chrome v. 13.0.782.112 m
SmartGWT v. 2.5
The Window... is used to see what sizes are being sent to resize, and the map.resize looks like:
I'm having a problem with a scrollbar but only in Chrome. When i open my site, the scrollbar is sequentially hiding/showing itself. The sizes used in the onResized() look like this:
Code:
public void onResized(ResizedEvent event) { map.resize(MapContainer.this.getWidthAsString(),MapContainer.this.getHeightAsString()); Window.alert("w: " + MapContainer.this.getWidthAsString() + "|h: "+ MapContainer.this.getHeightAsString()); }
Chrome v. 13.0.782.112 m
SmartGWT v. 2.5
The Window... is used to see what sizes are being sent to resize, and the map.resize looks like:
Code:
public void resize(final String width, final String height) { map.setWidth(width); map.setHeight(height); container.setWidth(width); container.setHeight(height); }
Comment