scrollpane.setComponentOrientation(chooser.getComponentOrientation());
scrollpane.getViewport().setBackground(SkyTheme.COLOR_BACKGROUND_LIGHT_LIGHT);
// Adjust width of first column so the table fills the viewport when
// first displayed (temporary listener).
scrollpane.addComponentListener(new ComponentAdapter()
{
public void componentResized(ComponentEvent e)
{
JScrollPane sp = (JScrollPane) e.getComponent();
fixNameColumnWidth(sp.getViewport().getSize().width);