Re: NSOutline view contents getting grayed

2008-12-06 Thread Nathan Kinsinger
On Dec 6, 2008, at 4:13 AM, Arun wrote: Hi All, I am writing a coca application in which i use NSOutline view for Navigating between different view like iTunes. So when i am clicking on the ouline view contents, the contents are highlighted in the blue. If i click on any other view other tha

Re: NSOutline view contents getting grayed

2008-12-06 Thread Arun
Hi What ever suggested by Graham has worked for me. Now i have one more problem where i am unable to turn on the text color to white upon selection in the outline view. Any idea? Thanks Arun KA On Sat, Dec 6, 2008 at 6:28 PM, chaitanya pandit <[EMAIL PROTECTED]>wrote: > > On 06-Dec-08, at 6:19

Re: NSOutline view contents getting grayed

2008-12-06 Thread chaitanya pandit
On 06-Dec-08, at 6:19 PM, Arun wrote: Hi, Thats correct. But in My application i have a table view in which i need to take some actions. In short i can say that My application should behave like iTunes where in it just slightly changes the color of selected playlist in oulineview but sti

Re: NSOutline view contents getting grayed

2008-12-06 Thread Arun
Hi, Thats correct. But in My application i have a table view in which i need to take some actions. In short i can say that My application should behave like iTunes where in it just slightly changes the color of selected playlist in oulineview but still allows doubl-click and slection highlighting

Re: NSOutline view contents getting grayed

2008-12-06 Thread Graham Cox
On 6 Dec 2008, at 10:34 pm, chaitanya pandit wrote: That is happening because the outline view is loosing it's it's first responder status. You can refuse to resign the first responder status by overriding - (BOOL)resignFirstResponder and returning NO Except that is likely to cause the re

Re: NSOutline view contents getting grayed

2008-12-06 Thread Arun
Hi , I tried the technique which you had suggested, it solved the graying problem. But if i use this i will not be able to perform any actions on the other views as outline view is the first responder always. any idea? -Arun On Sat, Dec 6, 2008 at 5:04 PM, chaitanya pandit <[EMAIL PROTECTED]>wr

Re: NSOutline view contents getting grayed

2008-12-06 Thread chaitanya pandit
That is happening because the outline view is loosing it's it's first responder status. You can refuse to resign the first responder status by overriding - (BOOL)resignFirstResponder and returning NO HTH, Chaitanya On 06-Dec-08, at 4:43 PM, Arun wrote: Hi All, I am writing a coca applicat