[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
problems with cell selection in GNUstep
From: |
Riccardo Mottola |
Subject: |
problems with cell selection in GNUstep |
Date: |
Sat, 12 Jan 2013 23:18:54 +0100 |
User-agent: |
Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/17.0 Firefox/17.0 SeaMonkey/2.14 |
Hi,
I want in a TableView to achieve that the data is not editable, but the
single cells are selectable, so that their data can be copy&pasted.
To obtain this, I set the Table's columns editable in IB / Gorm. Then I
use this code in awakeFromNib
col = [fieldTable tableColumnWithIdentifier:COLID_LABEL];
cell = [col dataCell];
[cell setSelectable:YES];
[cell setEditable:NO];
[col setDataCell:cell];
this works perfectly on the Mac. However, not on GNUstep, the cells do
not seem selectable at all. I also tried to use the NIB file instead of
the GORM file, just to exclude a potential source, but no help.
Just thinking about our table class is scary...
Riccardo
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- problems with cell selection in GNUstep,
Riccardo Mottola <=