RE: NSTableView Popup Column issue

2009-02-09 Thread Jon C. Munson II
Namaste! I found the issue. After deleting my test data and starting with a blank database, I noticed the tableview was still exhibiting the same behavior - displaying the beginning paren as if attempting to dump the object data. After stopping the program, I checked the tableview bindings and

RE: NSTableView Popup Column issue

2009-02-09 Thread Jon C. Munson II
-Original Message- From: cocoa-dev-bounces+jmunson=his@lists.apple.com [mailto:cocoa-dev-bounces+jmunson=his@lists.apple.com] On Behalf Of mmalc Crawford Sent: Saturday, February 07, 2009 1:23 PM To: Cocoa-Dev (Apple) Subject: Re: NSTableView Popup Column issue On Feb 6, 2009, at

Re: NSTableView Popup Column issue

2009-02-07 Thread jmunson
Namaste! After a little more digging, I figured out that the popup in question is displaying the object, not the attribute of the object I want to show. I have my app set up similar to the Event Manager Core Data example (only the names of things are different, but the model is the same).

Re: NSTableView Popup Column issue

2009-02-07 Thread Kyle Sluder
On Sat, Feb 7, 2009 at 1:05 AM, wrote: > Actually, it isn't obvious. If it were, I'd get it. The reason "selection" > didn't work (and I should have seen that earlier) is that it is singular in > nature. If you create a "form," with "fields" on it, you'd use selection as > you are only dealing

Re: NSTableView Popup Column issue

2009-02-07 Thread mmalc Crawford
On Feb 6, 2009, at 10:05 PM, jmun...@his.com wrote: Yes, Core Data does allow for many-to-many relationships. However, after a solid week of fooling around with trying to get that to work (there are only so many permutations one can use), I was not able to produce a working prototype. No

Re: NSTableView Popup Column issue

2009-02-07 Thread Ken Thomases
On Feb 6, 2009, at 9:47 AM, Jon C. Munson II wrote: I'm having an issue with a popup in a tableview. The Selected Object binding is configured thus: Bind to: tblPattern_Yarn Controller Key: arrangedObjects Model Key path: relYarn Everything else is the defaults that IB provides when that bi

Re: NSTableView Popup Column issue

2009-02-06 Thread jmunson
Namaste! Thank you for your reply. See my commentary below. However, my question still remains unanswered. Peace, Love, and Light, /s/ Jon C. Munson II Quoting Kyle Sluder : On Fri, Feb 6, 2009 at 3:36 PM, Jon C. Munson II wrote: Well, using "selection" didn't work (now that I've had an

Re: NSTableView Popup Column issue

2009-02-06 Thread Kyle Sluder
On Fri, Feb 6, 2009 at 3:36 PM, Jon C. Munson II wrote: > Well, using "selection" didn't work (now that I've had an opportunity to > test it). It definitely needs to be arrangedObjects (or something similar). > So, it isn't that. "Arranged Objects" is plural. "Selected Object" is singular. It

RE: NSTableView Popup Column issue

2009-02-06 Thread Jon C. Munson II
ht, /s/ Jon C. Munson II -Original Message- From: Jon C. Munson II [mailto:jmun...@his.com] Sent: Friday, February 06, 2009 11:36 AM To: 'Keary Suska' Cc: 'Cocoa-Dev (Apple)' Subject: RE: NSTableView Popup Column issue Namaste! Ah. I see. Thank you. I took the

RE: NSTableView Popup Column issue

2009-02-06 Thread Jon C. Munson II
sage- From: Keary Suska [mailto:cocoa-...@esoteritech.com] Sent: Friday, February 06, 2009 11:13 AM To: jmun...@his.com Cc: Cocoa-Dev (Apple) Subject: Re: NSTableView Popup Column issue On Feb 6, 2009, at 8:47 AM, Jon C. Munson II wrote: > The issue is that the popup displays a left pa

Re: NSTableView Popup Column issue

2009-02-06 Thread Keary Suska
On Feb 6, 2009, at 8:47 AM, Jon C. Munson II wrote: The issue is that the popup displays a left paren, and when the list is displayed, shows the item as an array dump (instead of the proper attribute's value). I also cannot select that value and have it "stick" to the underlying datasource