macOS Sierra . Setting state of checkboxes directly via setState:.
I removed the two lines: setting bezel style and border and it started working
as expected.
Thanks,
Navneet
Sent from my iPhone
> On 08-May-2017, at 10:17 PM, Quincey Morris
> wrote:
>
>> On May 8, 2017, at 05:20 , Navneet
On May 8, 2017, at 05:20 , Navneet Kumar wrote:
>
> If a checkbox is checked, it starts showing as unchecked the moment the
> window gets in background.
What platform? What mechanism are you using to provide the checkbox value
generally?
___
Cocoa-
Hi,
I have a view based outline view with first column for checkboxes.
I'm adding the checkbox button as a sub view to the custom supplied view for
the item for the first column.
If a checkbox is checked, it starts showing as unchecked the moment the window
gets in background.
Same way al
> On Jun 10, 2016, at 9:54 AM, David Catmull wrote:
>
> OK, thanks. I wasn’t thinking of bold being affected by row size, but I guess
> it makes sense that it's going to reset the font entirely.
Yeah, and if you want to have more control then don’t use the textField outlet
(make your own), an
OK, thanks. I wasn't thinking of bold being affected by row size, but I
guess it makes sense that it's going to reset the font entirely.
On Fri, Jun 10, 2016 at 10:46 AM, corbin dunn wrote:
>
> On Jun 10, 2016, at 7:58 AM, David Catmull wrote:
>
> I have a view-based, sidebar-style NSOutlineVie
> On Jun 10, 2016, at 7:58 AM, David Catmull wrote:
>
> I have a view-based, sidebar-style NSOutlineView. For some items, I want to
> make the text bold. But if I change the rowSizeStyle to medium instead of
> the default (in awakeFromNib), the text doesn't display as bold. If instead
> I use a
I have a view-based, sidebar-style NSOutlineView. For some items, I want to
make the text bold. But if I change the rowSizeStyle to medium instead of
the default (in awakeFromNib), the text doesn't display as bold. If instead
I use a custom row size (in outlineView:heightOfRowByItem:) it works. Wha
> On 28 May 2015, at 17:56, Kyle Sluder wrote:
>
> On Thu, May 28, 2015, at 08:37 AM, Dave wrote:
>> Hi,
>>
>> This is from Apple Sample Code so I thought something as fundamental as
>> this would have been dealt with correctly. This is the copy method inside
>> the “ImageAndTextCell” class,
>>
On Thu, May 28, 2015, at 08:37 AM, Dave wrote:
> Hi,
>
> This is from Apple Sample Code so I thought something as fundamental as
> this would have been dealt with correctly. This is the copy method inside
> the “ImageAndTextCell” class,
>
> -(id) copyWithZone:(NSZone*) zone
> {
> ImageAndTextCell
Hi,
This is from Apple Sample Code so I thought something as fundamental as this
would have been dealt with correctly. This is the copy method inside the
“ImageAndTextCell” class,
-(id) copyWithZone:(NSZone*) zone
{
ImageAndTextCell *cell = (BJImageAndTextCell*) [super copyWithZone:zone];
cell.
> On 28 May 2015, at 12:56 am, Dave wrote:
>
> myCell = (ImageAndTextCell*) [cell copy];
> //***
It’s a “well known”* fact that a copy of an NSCell or an
Sorry, I meant:
In I change this to:
myCell = (ImageAndTextCell*) [cell retain];
//***
It doesn’t work? Presumably now I think about it, because the Image
Hi,
I’ve Found it, please see line marked below.
In I change this to:
myCell = (ImageAndTextCell*) [cell copy];
//***
It doesn’t work, which is a bit of
kMode:NSLineBreakByTruncatingMiddle];
// scroll to the top in case the outline contents is very long
[[[myOutlineView enclosingScrollView] verticalScroller]
setFloatValue:0.0];
[[[myOutlineView enclosingScrollView] contentView]
scrollToPoint:NSMakePoint(0,0)];
Hi,
Thanks for this, I actually spotted that late last night and I refactored the
code to read as below, but it still crashes if I do not retain the "iconImage":
- (void)outlineView:(NSOutlineView *)olv willDisplayCell:(NSCell*)cell
forTableColumn:(NSTableColumn *)tableColumn item:(id) item
{
Hi,
Sorry, I wasn’t very clear, the VC is my existing VC with the Source Vice Code
from “myViewController” code added so this had to be converted to use manual
memory management. I also converted the other supporting classes although as
you point out, I could have just set the compiler flag.
H
> On May 26, 2015, at 11:34 AM, Dave wrote:
>
> The SourceView project is built using ARC, but my App uses Manual Memory
> Management. When I moved the code over, I changed it to use release etc. and
> changed any properties or iVar’s to use retain or assign.
Why not leave the source files a
On May 26, 2015, at 1:34 PM, Dave wrote:
> When I run the App, it displays the Tree View fine and Populates the two
> sections, but it crashes due to an over-release if I select a file based item
> - I found this by using NSZombies - it gives the error:
>
> *** -[NSImage release]: message sent
Hi,
I’ve incorporated the Tree Controller in SourceView. SourceView shows a Split
View with a tree structure on the left and either shows the contents of a URL
or a List of Files on the right, depending on which item is selected in the
left view.
The SourceView project is built using ARC, but
Found it!
The problem was in the tree controller properties, I must have missed a section
- it works now.
I must say the SourceView is the best written Sample code I’ve seen for ages,
it has everything you need to make it work in a real-ife situation, it’s easy
to adapt and the author resisted
Hi,
A bit more IB grief, the “Action Menu” Button is wired to the “menu” property
of the Menu Control. In SourceView it show normally, but in my App it shows
“menu” as pointing to “Menu” and “Menu” Greyed out. I can click the X to delete
the first (normal) reference, but not the greyed out one.
When I run the application, I get this error:
2015-05-24 12:56:30.661 Classifier[2884:1304096] Warning: [object class: NSMutableDictionary] childrenKeyPath cannot be
nil. To eliminate this log message, set the childrenKeyPath attribute in
Interface Builder
2015-05-24 12:56:39.335 Classifier[2884
Hi,
I need to add a hierarchical display to my application and found the Apple
Sample Code SourceView which is 90% of what I want. I’ve changed the NIB of my
existing Window so that it contains the NSTreeController and the necessary
Views, this is just recreated from looking at the Source View
014, at 6:54 AM, Charles Jenkins (mailto:cejw...@gmail.com)> wrote:
> >
> > I have a question that may be truly obvious and stupid, but here goes
> > anyway.
> >
> > In my application, I’ll display an outline view, and I want the user to be
> > able
On Sep 27, 2014, at 6:54 AM, Charles Jenkins wrote:
>
> I have a question that may be truly obvious and stupid, but here goes anyway.
>
>
> In my application, I’ll display an outline view, and I want the user to be
> able to drag nodes around to rearrange the tree however
I have a question that may be truly obvious and stupid, but here goes anyway.
In my application, I’ll display an outline view, and I want the user to be able
to drag nodes around to rearrange the tree however he likes.
The table objects’ drag-related functions I’ve found seem to rely on the
>
>On 11 Jul 2014, at 7:44 am, João Varela wrote:
>
>>Ithas been officially declared by Apple that cell-based NSOutlineView¹s
>>and
>>NSTableView's are deprecated.
>
>Would you care to point to where? I'm not arguing, but you wouldn't think
>so from the documentation. I see: "NSCell-based tables
In case anyone's following along, I followed Ken's suggestion and made a
subclass of NSTextField, and moved my
textView:willChangeSelectionFromCharacterRange:toCharacterRange: delegate
method there.
I also followed Bill's suggestion of overriding becomeFirstResponder so that I
could disallow
On Jul 11, 2014, at 2:54 AM, Quincey Morris
wrote:
> I guess you could solve it with a NSTextField subclass that overrides
> becoming first responder. Or is there a more direct solution, do you think?
Yes, that's exactly what I do, and it works. Override -[NSResponder
becomeFirstResponder].
; the actual editing. The field editor uses the control which owns the NSCell
> as its delegate. That control receives the NSTextViewDelegate and, by
> extension, NSTextDelegate method calls. Since an NSTextFieldCell is a kind
> of NSCell, all of the above applies to it, too.
>
> I
On Jul 11, 2014, at 2:24 AM, Shane Stanley wrote:
> FWIW, in my cell-based version I used
> textView:willChangeSelectionFromCharacterRange:toCharacterRange: in my
> outline view subclass. But that no longer seems to get called.
In general, an NSCell is owned by a control (instanc
On 11 Jul 2014, at 5:44 pm, Quincey Morris
wrote:
> In such a case, it’s also worth re-considering your UI at a higher level.
>
> I wonder, for example, whether there’s an alternative that uses *two* text
> fields. Put the file name in the ‘textField’ outlet field, and put the
> extension in
On Jul 11, 2014, at 00:24 , Shane Stanley wrote:
> Just seems a lot of work for something that doesn't strike me as an uncommon
> need.
In such a case, it’s also worth re-considering your UI at a higher level.
I wonder, for example, whether there’s an alternative that uses *two* text
fields.
On 11 Jul 2014, at 5:24 pm, Shane Stanley wrote:
>> I guess you could solve it with a NSTextField subclass that overrides
>> becoming first responder.
>
> That's all I can think of.
Well not quite. I'm already overriding keyDown: in the outline view to show QL
pre
rticular, I don’t see
> how you’d know *when* this was happening.
FWIW, in my cell-based version I used
textView:willChangeSelectionFromCharacterRange:toCharacterRange: in my outline
view subclass. But that no longer seems to get called.
> I guess you could solve it with a NSTextField sub
On Jul 10, 2014, at 23:34 , Ken Thomases wrote:
> Have you connected the delegate outlet of your text view (field?)?
This was my first thought, too, but:
1. The delegate method ‘control:textShouldBeginEditing:’ seems like it’s called
too late. Presumably the selection change needs to be done w
On Jul 11, 2014, at 12:54 AM, Shane Stanley wrote:
> I'm still not quite out of the woods. In my cell-based outline view, when the
> user selects an item and hits return to edit it, I change the selection so
> that only the file name before the extension was selected. I do tha
I'm still not quite out of the woods. In my cell-based outline view, when the
user selects an item and hits return to edit it, I change the selection so that
only the file name before the extension was selected. I do that with text view
delegate methods in my outline view subclass, but
On 11 Jul 2014, at 1:56 am, Quincey Morris
wrote:
> You are doing something basic incorrectly. That NSOutlineView delegate method
> is called ‘outlineView:viewForTableColumn:item:’.
Sigh. Thank you for restoring my faith in my own stupidity...
--
Shane Stanley
___
On Jul 10, 2014, at 00:25 , Shane Stanley wrote:
> I fear I'm doing something basic incorrectly, but I can't see what. My
> -outlineView:viewForTableColumn:row: is not even getting called, which seems
> very odd. (And yes, I commented out
> -outlineView:willDisplayCell:forTableColumn:item:). A
On Jul 10, 2014, at 2:25 AM, Shane Stanley wrote:
> I'm trying to convert a cell-based outline view to view-based. The model is a
> file wrapper, I'm using a datasource, and it was working fine while
> cell-based. I changed from a text cell to NSTableCellView, and when I
On 10 Jul 2014, at 6:37 pm, Bill Cheeseman wrote:
> All I can say from my experience is that it requires a lot of trial-and-error
Thanks, Bill -- I was hoping someone would pipe up and say I forgot to do X. Oh
well...
On 10 Jul 2014, at 10:00 pm, Graham Cox wrote:
> Is there some good reason
On Jul 10, 2014, at 8:00 AM, Graham Cox wrote:
> Is there some good reason to change to view-based, or are you doing it just
> because it seems to be the "modern" thing? I'd say, if it ain't broke...
I know you addressed your question to Shane, but speaking for myself: I'm
writing a new appl
On 10 Jul 2014, at 5:25 pm, Shane Stanley wrote:
> I'm trying to convert a cell-based outline view to view-based.
Is there some good reason to change to view-based, or are you doing it just
because it seems to be the "modern" thing? I'd say, if it ain't broke...
On Jul 10, 2014, at 3:25 AM, Shane Stanley wrote:
> I'm trying to convert a cell-based outline view to view-based. The model is a
> file wrapper, I'm using a datasource, and it was working fine while
> cell-based. I changed from a text cell to NSTableCellView, and when I
I'm trying to convert a cell-based outline view to view-based. The model is a
file wrapper, I'm using a datasource, and it was working fine while cell-based.
I changed from a text cell to NSTableCellView, and when I set it up to use
bindings for its image view and text field, it also
On Nov 20, 2013, at 13:50 , Quincey Morris
wrote:
> But it’s still coming out with the wrong view class.
OK, this just took a left turn and went to Weirdland. This was the relevant
code:
> NSTableCellView* view = [outlineView makeViewWithIdentifier:
> column.identifier owner: self];
>
On Nov 20, 2013, at 09:52 , Seth Willits wrote:
> There’s no setting need to make it cell or view-based. It’s determined simply
> by what delegate methods are implemented. It must simply be checking for
> view-based methods before cell-based. Nothing special.
OK, that would explain why I could
On Nov 19, 2013, at 8:42 PM, Quincey Morris
wrote:
> Here’s something puzzling, unless I’m missing the obvious:
>
> I’m intending to convert an outline view in an existing xib file from
> cell-based to view-based. In preparation, I added the requisite delegate
> method to the
Here’s something puzzling, unless I’m missing the obvious:
I’m intending to convert an outline view in an existing xib file from
cell-based to view-based. In preparation, I added the requisite delegate method
to the view controller:
> - (NSView*) outlineView: (NSOutlineView*) outlineV
Hi,
Thank you for your reply.
Yes, I have been thinking for a long time that I should take a really good look
to bindings. I should invest some time in it.
Thank you for your help.
Cheers,
Jean
On 7 sept. 2012, at 11:00, Uli Kusterer wrote:
> Jean,
>
> I think your problem isn't the table,
Jean,
I think your problem isn't the table, but that you're mixing up bindings and
outlets. To connect an outlet, simply Control-Drag and hook it up. Use the
little icons at the top of the inspector pane to switch to "Connections
Inspector", which shows the list of all outlets, actions, bindin
To add a few more informations:
If I manually write the outlet declaration in MyTableCellView.h
(@property(weak) NSTextField* myTextField); and if I add the @synthesize method
in the .m file, this time, IB is letting me do the connection.
However, IB is presenting me with a window I am not famil
On Sep 6, 2012, at 7:46 AM, Jean Suisse wrote:
> Instinctively, I would create a subclass of NSTableCellView
> (MyTableCellView), set the NSTableCellView to be MyTableCellView in IB and
> connect all the outlets to be able to do this at runtime :
> [MyTableCellView.MyExtraTextField setXXXValue
Hello,
In the content view of the window of a freshly created NIB, I have a view-based
outline view. The file owner is set to be MyWindowController. The outlineView
is the standard, preconfigured setup, dragged from IB.
Now, I would like to modify the "default" views provided in thi
Hi,
I wish to highlight a row on mouse over by changing the background color to
light blue. And back to regular when mouse moves away from the row.
Have seen a few examples of it on the internet.
But is there any efficient way to do this?
Any help would be greatly appreciated...
Thanks,
Nick
_
2011, at 10:48 PM, Gilles Celli wrote:
>
>> Yes forgot to say that I've a data source for the outline view….
>>
>> My OvItem.h class looks like this:
>
>
> Yes, but how and when does that structure get established? That's what
> matters here - o
Michael & Graham: thanks for the reply
I agree that my Item class and its structure for the outline view has to be
reworked...I'll let you know since I'm on vacancy for one week…
-Gilles
On 2 sept. 2011, at 14:35, Michael Babin wrote:
> On Sep 2, 2011, at 7:15 AM, G
On 02/09/2011, at 10:48 PM, Gilles Celli wrote:
> Yes forgot to say that I've a data source for the outline view….
>
> My OvItem.h class looks like this:
Yes, but how and when does that structure get established? That's what matters
here - obviously the data structure nee
Yes forgot to say that I've a data source for the outline view….
My OvItem.h class looks like this:
#import
@interface OvItem : NSObject {
NSString *title;
NSMutableArray *children;
BOOL isParent;
}
@property (nonatomic, readwrite, copy) NSString *title;
@pro
On Sep 2, 2011, at 7:15 AM, Gilles Celli wrote:
> I've setup a Document based application with an NSOutlineView which displays
> Parent-Item along with its children…with XCode 4 on OS X Lion.
>
> When launching the application, the outline view shows the Root title…only if
Hello,
I've setup a Document based application with an NSOutlineView which displays
Parent-Item along with its children…with XCode 4 on OS X Lion.
When launching the application, the outline view shows the Root title…only if I
refresh the outline view the children are displayed too.
Dear list,
I was wondering if anyone knows a way to get the animated collapsing/expanding
of outline view rows programatically. Currently I'm using -collapseItem: and
-expandItem: but the visual result doesn't have the animation that you get when
clicking on the disclosure triangle.
er to control it
and to be its delegate.
I use a modified version of Apple's ImageAndTextCell class to draw each item in
the single column outline view. The image and text cell class draws the image
and a colour label where necessary like those applied in Finder and then asks
super (NSTextCel
On Jan 11, 2011, at 5:32 PM, Rick Mann wrote:
> i found two examples so far (one using notifications, one KVO) for responding
> to changes in a table view's selection.
There is one way:
- (void)tableViewSelectionDidChange:(NSNotification *)notification;
Implement it on your delegate.
>
> I
I needed to observe selectionIndexPaths, not selectionIndexes. I only
discovered this by adding the NSKeyValueObservingOptionInitial (would've been
nice if the act of observing would check to see if the key exists).
--
Rick
On Jan 11, 2011, at 17:33:29, Rick Mann wrote:
> Sorry, forgot to add
Sorry, forgot to add something (that my tree controller binds to Core Data).
-
I found two examples so far (one using notifications, one KVO) for responding
to changes in a table view's selection.
I tried the KVO approach in the sample code NSTabelViewBinding. It sets up KVO
on the array c
i found two examples so far (one using notifications, one KVO) for responding
to changes in a table view's selection.
I tried the KVO approach in the sample code NSTabelViewBinding. It sets up KVO
on the array controller:
[myContentArray addObserver: self
: Re: Image,text and button cell in outline view
On 24 nov 2010, at 16.08, Rajendran P wrote:
>my requirement is simple I need a nscell to have image, text and button to
> be used in an outline view .I had a look at the imageandtext cell example ,
> how to add an button to it ?
On 24 nov 2010, at 16.08, Rajendran P wrote:
>my requirement is simple I need a nscell to have image, text and button to
> be used in an outline view .I had a look at the imageandtext cell example ,
> how to add an button to it ? any idea about how to convert image and tex
Try googling NSButtonCells, or look them up in the documentation.
On Nov 24, 2010, at 7:08 PM, Rajendran P wrote:
> HI
>my requirement is simple I need a nscell to have image, text and button to
> be used in an outline view .I had a look at the imageandtext cell example ,
>
HI
my requirement is simple I need a nscell to have image, text and button to
be used in an outline view .I had a look at the imageandtext cell example ,
how to add an button to it ? any idea about how to convert image and text
cell
to add button ? any suggestion would be really help
HI all,
is it possible to have an outline with three elements in parents and only
element in child window ? I need to implement an outline view in which the
parent have 3 elements namely
nstext , nsimage and nsbutton and the child window has only element namely
nstext . my build is
HI
i need to implement an outline view similar to the one below
* first row should consist of Text followed by image and button
* on expansion child rows should have Multi Line text
| l> TEXT HERE Imagehere ButtonH
Hi everyone, I have an outline view where I want to set things up so that when
the user starts typing, it both starts editing and replaces the contents of the
selected row with the typed character. Here is what I have been using:
- (void)insertText:(id)aString {
if ([self selectedRow
Hi, I have an outline view which uses variable row heights, and need to resize
and position the field editor as the user edits the text. My code in my outline
view is as follows:
- (void)textDidChange:(NSNotification *)aNotification {
NSInteger editedRow = [self editedRow];
if
On 12/21/09 3:19 PM, Sandro Noël said:
>How do you tell an Outline View item to enter edit mode from a pop up menu.
>Just like when i double click on it?
>
>I Looked Around, but when i call the Edit Message, i get an error that
>it is an unknown selector.
<http://lists.apple.
Greetings
This is probably a simple question.
How do you tell an Outline View item to enter edit mode from a pop up menu.
Just like when i double click on it?
I Looked Around, but when i call the Edit Message, i get an error that it is an
unknown selector.
any clues?
regards.
Sandro Noel
On 19/12/2009, at 3:32 AM, Sandro Noël wrote:
> I do not have access to the window instance.
> How do i get to the window?
>
Yes you do - all views have a -window property that returns it.
--Graham
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple
ation?
>
> Just make the outline view itself first responder. This will validate and
> resign the text field if it's OK.
>
> [[outlineView window] makeFirstResponder:outlineView];
>
> --Graham
>
>
___
Cocoa-dev mailing l
On 19/12/2009, at 1:35 AM, Sandro Noël wrote:
> But how do I actually cancel the editing operation?
Just make the outline view itself first responder. This will validate and
resign the text field if it's OK.
[[outlineView window] makeFirstResponder:outlineView];
Hello
In an outline View, listing the content of a directory with a custom Image/Text
cell
I would want to react to the "ESC" key press to cancel the current editing
operation.
Using my OutlineView Controller Delegate I can receive the notification that
NSResponder's cancelOpe
Here's one I created in about 10 minutes: Create a regular Cocoa app, drop an
outline view into the window, and hook it up to the AppDelegate for its
datasource and its delegate.
The following four methods will allow you to walk your entire file hierarchy.
Yes there's a memory leak
otherwise Outline View programing topics should get you what you want,
though with out bindings:
http://developer.apple.com/mac/library/documentation/cocoa/Conceptual/OutlineView/OutlineView.html#//apple_ref/doc/uid/1023
There's also sample code (though it is meant to demonstrate drag and
On 2009-12-03, at 11:07 PM, Graham Cox wrote:
>
> http://apptree.net/gcfolderbrowser.htm
>
>
> hth,
>
> --Graham
>
Graham thanks for the link,
the component is deprecated thow.
but it's a good enough example.
___
Cocoa-dev mailing list (Cocoa-dev@
On 04/12/2009, at 2:59 PM, Sandro Noël wrote:
> I was wondering if anyone had a good example or post for the Dreaded Outline
> View.
> I'm trying to list the content of a directory but i'm having problems
> understanding the model.
> i have to feed the view.
>
&
Greetings.
I was wondering if anyone had a good example or post for the Dreaded Outline
View.
I'm trying to list the content of a directory but i'm having problems
understanding the model.
i have to feed the view.
I've ran across a couple of examples but they all mix up my
hey
thanks, that is exactly what i was looking for, i have got it working now
(nearly).
so, a related question. i have an outline view and when searches are
performed a new item is added to the outline view with a badge that displays
the number of search results. the outline view is bound to a
> could someone point me in the right direction, what is the easiest way of
> doing this? would i have to override the text cell for the outline view, or
> can i use a value transformer of some sort?
I'm sure someone will correct me if (when?) I'm wrong but I've heard
them
hey
i am working on an application that has an NSOutlineView as a left panel.
when searches are performed, a new entry is added to the outline view. what
i would like is for the search entry to have a little blue rounded rectangle
to the right that contains the number of items that have been
On Sep 30, 2009, at 20:58, Rick Mann wrote:
On Sep 30, 2009, at 16:22:45, Rick Mann wrote:
I'm looking at ways of grouping some Core Data objects in a outline
view. What I have are 3 or 4 different entities, and I want each of
the objects of each type to appear under a parent item i
On Sep 30, 2009, at 16:22:45, Rick Mann wrote:
I'm looking at ways of grouping some Core Data objects in a outline
view. What I have are 3 or 4 different entities, and I want each of
the objects of each type to appear under a parent item in the
outline view.
Currently, I've i
On Sep 30, 2009, at 16:30:24, Sean McBride wrote:
On 9/30/09 4:22 PM, Rick Mann said:
I'm looking at ways of grouping some Core Data objects in a outline
view. What I have are 3 or 4 different entities, and I want each of
the objects of each type to appear under a parent item in the ou
On 9/30/09 4:22 PM, Rick Mann said:
>I'm looking at ways of grouping some Core Data objects in a outline
>view. What I have are 3 or 4 different entities, and I want each of
>the objects of each type to appear under a parent item in the outline
>view.
>
>Currently, I'v
I'm looking at ways of grouping some Core Data objects in a outline
view. What I have are 3 or 4 different entities, and I want each of
the objects of each type to appear under a parent item in the outline
view.
Currently, I've implemented a simple table view and it's boun
On Sep 6, 2009, at 12:02 AM, Joshua Garnham
wrote:
Ok, I understand what you mean.
So how would I implement it in the Controller?
That's a question only you can answer. Break down the problem.
You also never answered the question of whether this is a behavior of
your model objects or jus
I would like the Data to be deleted permanently.
Cheers,
Josh.
From: Jack Carbaugh
To: Joshua Garnham
Cc: cocoa-dev@lists.apple.com
Sent: Saturday, 5 September, 2009 22:37:00
Subject: Re: Making an Outline View delete a rows children when the parent is
That depends on your meaning.
Do you only want them deleted visibly in the table/outline view OR do
you want the data to be deleted permanently
The table/outline is SEPARATE from the actual data.
On Sep 5, 2009, at 2:14 PM, Joshua Garnham wrote:
How would I make a rows children be deleted
so it may in
fact be about the view. "Delete" may mean "remove from the tree
structure that contains it" or "dispose of the object after it's been
removed from the tree structure".
Accordingly, the answer to the question that the OP was trying to ask
migh
On Sep 5, 2009, at 11:14 AM, Joshua Garnham
wrote:
How would I make a rows children be deleted when the parent is
deleted?
This is a model behavior, not a view behavior.
--Kyle Sluder
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Plea
1 - 100 of 162 matches
Mail list logo