TwinColSelect askew in IE6

Greetings.

I can’t seem to get TwinColSelect to appear correctly in IE6.

Here’s the sample code:


private class testWindow extends Window
        {
        public testWindow()
            {
            setModal( true );
            
            VerticalLayout lo = new VerticalLayout();
            
            TwinColSelect twnSel = new TwinColSelect( );
            twnSel.setImmediate( false );
            twnSel.setSizeUndefined();
            twnSel.setColumns( 12 );
            twnSel.setRows( 4 );
            twnSel.addItem( "Item 1" );
            twnSel.addItem( "Item 2" );
            twnSel.addItem( "Item 3" );
            twnSel.addItem( "Item 4" );
            twnSel.addItem( "Item 5" );
            
            lo.addComponent( twnSel );
            lo.setComponentAlignment( twnSel, Alignment.MIDDLE_CENTER );
              
            lo.setSizeUndefined();
            
            setSizeUndefined();
            setContent( lo );
            }
        }

Here’s the result in ie6:

Looks fine in ie8, firefox, and chrome. Here’s the firefox result:

Regards.

… I’m new to vaadin, but loving it so far. Great tool. Thanks.

Bump.
Really? There’s no solution, or workaround, here?

The only “fix” I’ve thought up is to create a replacement class that would mimic the TwinColSelect functionality, perhaps extending an AbstractSelect, or AbstractContainer and is comprised of two ListSelects and two Buttons. Some functionality might be hard to replicate.
Oof!

Does anyone know of an add-on that’s a replacement for the TwinColSelect?

Live with the ugly/broken rendering in IE6?

Sorry, I’m kinda stuck with IE6 being the target browser.

Thanks,
brv

Looks like a bug to me, please
create a ticket
about the issue and the R&D team will look at it. Note that you need to register to our Trac before you can create tickets.