this.contentPanel.setAutoHeight( true );
Portal portal = new Portal();
portal.setBorder( false );
PortalColumn firstCol = new PortalColumn();
firstCol.setPaddings( 5, 5, 5, 5 );
PortalColumn secondCol = new PortalColumn();
secondCol.setPaddings( 5, 5, 5, 5 );
for (int i = 0; i < this.contactPortlets.length; i++) {
this.contactPortlets[i] = createPortlet();
}
firstCol.add( this.contactPortlets[0] );
secondCol.add( this.contactPortlets[1] );
firstCol.add( this.contactPortlets[2] );
secondCol.add( this.contactPortlets[3] );
firstCol.add( this.contactPortlets[4] );
secondCol.add( this.contactPortlets[5] );
portal.add( firstCol, new ColumnLayoutData( 0.5 ) );
portal.add( secondCol, new ColumnLayoutData( 0.5 ) );
this.contentPanel.add( portal );