Re: More Embedded D2W Questions...

2013-03-11 Thread Johnny Miller
Well, I don't think I did anything particularly clever but I got what I wanted. I just created a rule that said if pageConfiguration like "EditToMany*" the task is edit. Another rule that says the subtask is pick. Then I created rule that said if task = 'edit' and subtask = 'pick' the repetiti

Re: More Embedded D2W Questions...

2013-03-11 Thread Johnny Miller
Hello everyone, I'm trying to get my head around the ERXD2WPick. I'm assuming this is the component for displaying a list of objects that will be assigned to a to-many relationship. Is there a good example of displaying the list of potential candidates with a checkbox? I want the ability to

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
Nevermind... the key is displayPropertyKeys On Mar 4, 2013, at 6:19 PM, Johnny Miller wrote: > With embedded components you can pass in the displayKeys as a binding. Can > you also specify it with rules and what would be the key in the rules system? > > On Mar 4, 2013, at 3:47 PM, Johnny M

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
With embedded components you can pass in the displayKeys as a binding. Can you also specify it with rules and what would be the key in the rules system? On Mar 4, 2013, at 3:47 PM, Johnny Miller wrote: > Cool. Thank you. > > On Mar 4, 2013, at 3:12 PM, Ramsey Gurley wrote: > >> >> On Mar

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
Cool. Thank you. On Mar 4, 2013, at 3:12 PM, Ramsey Gurley wrote: > > On Mar 4, 2013, at 6:02 PM, Johnny Miller wrote: > >> So I'm not sure how much a hack it is but you can do the following: >> >> public WOActionResults inspectObject(WOComponent value) { >> >> setSender(

Re: More Embedded D2W Questions...

2013-03-04 Thread David Holt
On 2013-03-04, at 5:34 PM, Jesse Tayler wrote: > > we should just have a tips and tricks page for the modern look and d2w http://wiki.wocommunity.org/display/documentation/D2W+Rules+Reference+-+Cookbook+-+FAQ > > > > > On Mar 4, 2013, at 8:02 PM, Johnny Miller wrote: > >> So I'm not su

Re: More Embedded D2W Questions...

2013-03-04 Thread Jesse Tayler
we should just have a tips and tricks page for the modern look and d2w On Mar 4, 2013, at 8:02 PM, Johnny Miller wrote: > So I'm not sure how much a hack it is but you can do the following: > > public WOActionResults inspectObject(WOComponent value) { > > setSender(val

Re: More Embedded D2W Questions...

2013-03-04 Thread Ramsey Gurley
On Mar 4, 2013, at 6:02 PM, Johnny Miller wrote: > So I'm not sure how much a hack it is but you can do the following: > > public WOActionResults inspectObject(WOComponent value) { > > setSender(value); > WOComponent target = > (WOComponent)D2WEmbeddedCompone

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
So I'm not sure how much a hack it is but you can do the following: public WOActionResults inspectObject(WOComponent value) { setSender(value); WOComponent target = (WOComponent)D2WEmbeddedComponent.findTarget(sender()); WOComp

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
Hi Ramsey, > Did you look at this yet? > > http://wiki.wocommunity.org/display/documentation/D2W+Flow+Control Do you know if there is a way to communicate to the component that is embedding the D2W components in the branch delegate? Since I'm using embedding the top level component is responsi

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
Please see below. Thanks, Johnny On Mar 4, 2013, at 10:42 AM, Ramsey Gurley wrote: > > On Mar 4, 2013, at 12:51 PM, Johnny Miller wrote: > >> Hi Ramsey, >> >> On Mar 3, 2013, at 1:13 PM, Ramsey Gurley wrote: >> >>> >>> On Mar 3, 2013, at 2:00 PM, Johnny Miller wrote: >>> Hi,

Re: More Embedded D2W Questions...

2013-03-04 Thread Ramsey Gurley
On Mar 4, 2013, at 12:51 PM, Johnny Miller wrote: > Hi Ramsey, > > On Mar 3, 2013, at 1:13 PM, Ramsey Gurley wrote: > >> >> On Mar 3, 2013, at 2:00 PM, Johnny Miller wrote: >> >>> Hi, >>> >>> So I'm trying to create a component like the master detail page in the >>> "Custom and embedded d2

Re: More Embedded D2W Questions...

2013-03-04 Thread Johnny Miller
Hi Ramsey, On Mar 3, 2013, at 1:13 PM, Ramsey Gurley wrote: > > On Mar 3, 2013, at 2:00 PM, Johnny Miller wrote: > >> Hi, >> >> So I'm trying to create a component like the master detail page in the >> "Custom and embedded d2w components" presentation. >> >> My list page component subclasse

Re: More Embedded D2W Questions...

2013-03-03 Thread Ramsey Gurley
On Mar 3, 2013, at 2:00 PM, Johnny Miller wrote: > Hi, > > So I'm trying to create a component like the master detail page in the > "Custom and embedded d2w components" presentation. > > My list page component subclasses ERD2WListPage and my inspect page > subclasses ERD2WInspectPage. > >