Hi,
I've noticed that in a current version of smartGWT (23-05-2011)
there is an unnecessary blank space in a dynamic form before a first item in that form. See a picture attached.
Also there is a TabSet in the middle of that VLayout with an automatic height set. Resulting in height of 1 pixel. That is wrong too.
Cheers,
Zdary
I've noticed that in a current version of smartGWT (23-05-2011)
there is an unnecessary blank space in a dynamic form before a first item in that form. See a picture attached.
Also there is a TabSet in the middle of that VLayout with an automatic height set. Resulting in height of 1 pixel. That is wrong too.
Code:
geographicInfoTabs = new TabSet();
Tab geographbicInfoTab = new Tab("geographbic info");
geographicInfoTabs.addTab(geographbicInfoTab);
geographbicInfoTab.setPane(geographicInfoForm);
geographicInfoTabs.setWidth(462);
geographicInfoTabs.setAutoHeight();
Zdary
Comment