Re: IB outlets and NSCollectionViews

2008-05-25 Thread Daniel Vollmer
On May 23, 2008, at 17:48, David Carlisle wrote: I solved a similar problem when putting a pop up menu into a collectionView item. There might be an easier way, but I assume that to put a button in a collectionViewItem, the button would have to send a message to a subclass of

Re: IB outlets and NSCollectionViews

2008-05-23 Thread Marcel Borsten
Could you give a bit more information on how you solved this. I'm trying to do something similar, but I can't get it to work. Hm ...I had to bind it to a NSCollectionItemView subclass that routes to the AppController. cheers -- Torsten On Apr 7, 2008, at 18:04, Torsten Curdt wrote: Hm

Re: IB outlets and NSCollectionViews

2008-05-23 Thread David Carlisle
I solved a similar problem when putting a pop up menu into a collectionView item. There might be an easier way, but I assume that to put a button in a collectionViewItem, the button would have to send a message to a subclass of NSCollectionViewItem, which you would then cause to send a

Re: IB outlets and NSCollectionViews

2008-04-08 Thread Torsten Curdt
Hm ...I had to bind it to a NSCollectionItemView subclass that routes to the AppController. cheers -- Torsten On Apr 7, 2008, at 18:04, Torsten Curdt wrote: Hm ...I was trying to bind a button inside a NSCollectionItemView view to an action in my AppController. This obviously does not work.