views:

42

answers:

0

I successfully implemented the Merged NSTableView from the article by Dan Wood: http://www.mactech.com/articles/mactech/Vol.18/18.11/1811TableTechniques/index.html

I am trying to make the cells be NSButtonCells, in general it works well, the only problem is that it only responds to the clicks done in the area of the original column, not in the other columns that the cell is merged with.

I am trying to find somewhere where the frame for clicks on the cell is made but I cannot find one. Ive already replaced:

- (NSRect)frameOfCellAtColumn:(NSInteger)column row:(NSInteger)row
- (void)drawRow:(NSInteger)rowIndex clipRect:(NSRect)clipRect

with no results. Any ideas?