Skip navigation.
 
mlRe: How to know when the selection changed in an NSOutlineView when scrolling with the arrow keys?
FROM : Jan Van Boghout
DATE : Sat Jan 11 18:04:03 2003

Problem solved by using  -
(void)outlineViewSelectionDidChange:(NSNotification *)notification
instead of  - (void)outlineChangedSelection:(id)sender

I wonder why that methode is used in the example Oh well :)

> I have the following problem with my outline view:
>
> I have some controls that need updating, and that works fine when I
> select a new cell with the mouse. But when I use the arrow keys to
> change my selection, the highlight moves but outlineChangedSelection is
> not called.
>
> How can I solve this?  (Even Apple's DragNDropOutlineView example ha
> this flaw)
>
>
> Greetings,
>
> Jan Van Boghout

_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
mlHow to know when the selection changed in an NSOutlineView when scrolling with the arrow keys? Jan Van Boghout Jan 11, 16:59
mlRe: How to know when the selection changed in an NSOutlineView when scrolling with the arrow keys? Jan Van Boghout Jan 11, 18:04