[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] Re: Tree with multiple cols - Why?
|
The getItem method in the Tree implementation does the following check which
seems to be the reason why I cannot select or even get the cell item
clicked. Why?
if ((style & SWT.FULL_SELECTION) != 0 || (lpht.flags & OS.TVHT_ONITEM) != 0)
{ . . .
"kumuksu" <kumuksu@xxxxxxxxxxx> wrote in message news:dak7dt$nv5$1@xxxxxxxxx
pse.org...
> I have a tree with multiple cols. I would like to select any given cell
> without selecting the entire row it belongs. If I use the SWT.Single
style,
> it allows selection only on the first col. I didnt see any other style in
> the source. What am I missing? TreeTable has been deprecated since 3.1,
> hence the use of a tree.
>
>