[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] table layouting

Hi,
I try to make a table be expanded all over an editor, using the following
code:
      
		/** Create the Table*/
        table = new Table(composite, SWT.NONE | SWT.SINGLE |
SWT.FULL_SELECTION |
                                   SWT.BORDER | SWT.V_SCROLL |
SWT.H_SCROLL);

        table.setLayoutData(new GridData(GridData.FILL_BOTH));
        table.setHeaderVisible(true); 
        table.addSelectionListener (this);
		

but it shos only on the upper left side of the editor, not covering it all.

How can I solve it?

Thanks,
Royi Ronen, IBM Research laboratories.