Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-07-17 Thread M Larsen
As the guy who provided this snippet, I just want to say that it has been fixed on SO in the hope that future users of that site don't get confused. Thanks for catching the missing call to super. M Larsen On 25 Jun 2012, at 22:32, Corbin Dunn wrote: You really want to call [super

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-26 Thread Nava Carmon
Thanks for pointing this out. I added it. Best Regards, Nava Carmon, Moshiach Times Ltd., e-mail: ncar...@mac.com Skype: navacarmon Phone: +972.52.8157770 On Jun 25, 2012, at 11:32 PM, Corbin Dunn wrote: You really want to call [super didAddSubview:] in that code snippet. corbin On

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-26 Thread Nava Carmon
And thank you for answering my question… Nava On Jun 26, 2012, at 12:15 AM, M Larsen wrote: As the guy who provided this snippet, I just want to say that it has been fixed on SO in the hope that future users of that site don't get confused. Thanks for catching the missing call to

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-25 Thread Corbin Dunn
You really want to call [super didAddSubview:] in that code snippet. corbin On Jun 23, 2012, at 2:29 PM, Nava Carmon ncar...@mac.com wrote: Just for those who need to customize their outline view disclosure arrow: Here's the answer from SO, that worked perfectly for me.

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-23 Thread Nava Carmon
Just for those who need to customize their outline view disclosure arrow: Here's the answer from SO, that worked perfectly for me. http://stackoverflow.com/questions/11127764/how-to-customize-disclosure-cell-in-view-based-nsoutlineview Best Regards, Nava Carmon, Moshiach Times Ltd., e-mail:

willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Nava Carmon
Hi, I want to customize the disclosure arrow appearance in my view-based NSOutlineView. I overrode the willDisplayOutlineCell delegate method, but it's not called. The willDisplayCell delegate method - is not called either. Is it known issue or I'm missing something? (The isItemExpandable

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Lee Ann Rucker
: willDisplayOutlineCell of view-based NSOutlineView is not called Hi, I want to customize the disclosure arrow appearance in my view-based NSOutlineView. I overrode the willDisplayOutlineCell delegate method, but it's not called. The willDisplayCell delegate method - is not called either. Is it known issue or I'm

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Nava Carmon
: willDisplayOutlineCell of view-based NSOutlineView is not called Hi, I want to customize the disclosure arrow appearance in my view-based NSOutlineView. I overrode the willDisplayOutlineCell delegate method, but it's not called. The willDisplayCell delegate method - is not called either. Is it known issue

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Kyle Sluder
On Jun 21, 2012, at 1:22 AM, Nava Carmon ncar...@mac.com wrote: And this is what apple documentation says on this: outlineView:willDisplayOutlineCell:forTableColumn:item: Informs the delegate that an outline view is about to display a cell used to draw the expansion symbol.

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Corbin Dunn
On Jun 21, 2012, at 7:45 AM, Kyle Sluder k...@ksluder.com wrote: On Jun 21, 2012, at 1:22 AM, Nava Carmon ncar...@mac.com wrote: And this is what apple documentation says on this: outlineView:willDisplayOutlineCell:forTableColumn:item: Informs the delegate that an outline view is

Re: willDisplayOutlineCell of view-based NSOutlineView is not called

2012-06-21 Thread Nava Carmon
Thank you all for answering. Corbin, where is the best place to add my own disclosure button? I believe not in the view itself, since it's indented. Thanks On Jun 21, 2012, at 7:25 PM, Corbin Dunn wrote: On Jun 21, 2012, at 7:45 AM, Kyle Sluder k...@ksluder.com wrote: On Jun 21, 2012,