Re: NSTableView view based full width view

2014-06-26 Thread Jonathan Mitchell
On 26 Jun 2014, at 13:16, Jonathan Mitchell wrote: > > On 25 Jun 2014, at 16:41, Ken Thomases wrote: >> >> Couldn't you return a custom row view using -tableView:rowViewForRow: and >> then return no cell views for that row by returning nil from >> -tableView:viewForTableColumn:row:? >> > C

Re: NSTableView view based full width view

2014-06-26 Thread Jonathan Mitchell
On 25 Jun 2014, at 16:41, Ken Thomases wrote: > > Couldn't you return a custom row view using -tableView:rowViewForRow: and > then return no cell views for that row by returning nil from > -tableView:viewForTableColumn:row:? > Customising the group row behaviour does seem like the answer here

Re: NSTableView view based full width view

2014-06-25 Thread Kyle Sluder
> On Jun 25, 2014, at 10:41 AM, Ken Thomases wrote: > > Couldn't you return a custom row view using -tableView:rowViewForRow: and > then return no cell views for that row by returning nil from > -tableView:viewForTableColumn:row:? IIRC, this doesn’t present correctly to VoiceOver. --Kyle ___

Re: NSTableView view based full width view

2014-06-25 Thread Ken Thomases
On Jun 25, 2014, at 9:48 AM, Kyle Sluder wrote: > On Jun 25, 2014, at 9:07 AM, Jonathan Mitchell > wrote: >> >> The docs for >> >> - (NSCell *)tableView:(NSTableView *)tableView >> dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row >> say >> >> A different data cell can

Re: NSTableView view based full width view

2014-06-25 Thread Kyle Sluder
On Jun 25, 2014, at 9:07 AM, Jonathan Mitchell wrote: > > The docs for > > - (NSCell *)tableView:(NSTableView *)tableView > dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row > say > > A different data cell can be returned for any particular table column and > row, or a c

NSTableView view based full width view

2014-06-25 Thread Jonathan Mitchell
The docs for - (NSCell *)tableView:(NSTableView *)tableView dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row say A different data cell can be returned for any particular table column and row, or a cell that will be used for the entire row (that is, a full width cell). Th