Re: D2W permissions on a row in a list

2013-03-05 Thread David Holt
don't see a reason > why it would not work. > > Ted > > --- On Mon, 3/4/13, David Holt wrote: > >> From: David Holt >> Subject: D2W permissions on a row in a list >> To: "webobjects-dev@lists.apple.com Development" >> >> Date: Mo

Re: D2W permissions on a row in a list

2013-03-04 Thread Theodore Petrosky
would not work. Ted --- On Mon, 3/4/13, David Holt wrote: > From: David Holt > Subject: D2W permissions on a row in a list > To: "webobjects-dev@lists.apple.com Development" > > Date: Monday, March 4, 2013, 7:30 PM > Hi all, > I appear to be missing something. I w

Re: D2W permissions on a row in a list

2013-03-04 Thread David Holt
That wasn't it either. But you do agree that a boolean value in an entity should be able to configure what actions are displayed? What assignment would you use? Thanks, David On 2013-03-04, at 4:53 PM, Ramsey Gurley wrote: > Oh, I think I see your problem. I wasn't looking at the LHS. Try >

Re: D2W permissions on a row in a list

2013-03-04 Thread Ramsey Gurley
Oh, I think I see your problem. I wasn't looking at the LHS. Try isOwnerLoggedInUser = 1 Unless you actually want to see if that key equals the string "true" Ramsey On Mar 4, 2013, at 5:43 PM, David Holt wrote: > Thanks Ramsey, > > No a generic rule works fine: > > 100 : pageConfiguration =

Re: D2W permissions on a row in a list

2013-03-04 Thread David Holt
Thanks Ramsey,No a generic rule works fine:100 : pageConfiguration = 'ListActivities' => actions = {"right" = ("inspectAction", "deleteAction"); } [Assignment]On 2013-03-04, at 4:39 PM, Ramsey Gurley wrote:Some ideas:isEntityDeleteable = false?Nopeeo.canDelete() == false?n

Re: D2W permissions on a row in a list

2013-03-04 Thread Ramsey Gurley
Some ideas: isEntityDeleteable = false? eo.canDelete() == false? wrong componentName for deleteAction? On the page but hidden by css? Ramsey On Mar 4, 2013, at 5:30 PM, David Holt wrote: > Hi all, > > I appear to be missing something. I want to allow owners of an object to > delete it from a

D2W permissions on a row in a list

2013-03-04 Thread David Holt
Hi all,I appear to be missing something. I want to allow owners of an object to delete it from a list page.100 : (pageConfiguration = 'ListActivities' and isOwnerLoggedInUser = 'true') => actions = {"right" = ("deleteAction"); } [Assignment]The actions are not showing up, even though I have the val