[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: Checkbox in a table

Hi,
If you want a checkbox to be displayed in every row of a table you've to use SWT.CHECK in your table constructor.
Table table = new Table(parent, SWT.CHECK|SWT.BORDER | SWT.FULL_SELECTION);


regards,
Srivatsan