Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-information-widget@111466 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-01-23 11:58:26 +00:00
parent 7883c8aa2d
commit bc003e6039
1 changed files with 8 additions and 6 deletions

View File

@ -122,11 +122,7 @@ public class TabularResourceProperties extends FramedPanel {
setId(name);
this.eventBus = eventBus;
forceLayoutOnResize = true;
vl = new VerticalLayoutContainer();
//vl.setScrollMode(ScrollMode.AUTO); Set In GXT 3.0.1
vl.setAdjustForScroll(true);
retrieveLicencesList();
}
@ -309,7 +305,13 @@ public class TabularResourceProperties extends FramedPanel {
layoutTabularResource.add(hBox, new VerticalLayoutData(-1, -1,
new Margins(2)));
vl.add(trFieldSet);
vl = new VerticalLayoutContainer();
//vl.setScrollMode(ScrollMode.AUTO); Set In GXT 3.0.1
vl.setAdjustForScroll(true);
vl.add(trFieldSet, new VerticalLayoutData(1, -1,
new Margins(0)));
add(vl);
}