Hi,
I have two properties in my content type. One is called
"accountManager", the other is called "account".
When a user chooses a different account manager from the drop down, I
want the 2nd drop down (account) to change.
Below are the two properties I'm working with.
<!--- Account Manager --->
<cfproperty
ftseq="1"
name="accountManager"
ftfieldset="General Information"
ftwizardStep="Step 1"
type="string"
hint="Account Manager"
required="no"
default=""
ftlabel="Account Manager"
ftType="list"
ftList=":Choose Manager,John Smith,Richard Pickens,Bob Wright"
ftvalidation="required"
/>
<!---Account--->
<cfproperty
ftseq="2"
ftfieldset="General Information"
ftwizardStep="Step 1"
name="account"
type="string"
required="no"
default=""
ftlabel="Account"
ftWatch="accountManager"
/>
In this link, it suggests creating some edit() function basically.
https://farcry.jira.com/wiki/display/FCDEV50/ftWatch+Example
Questions:
1. If I need to create an edit() where do I do this at? Within my
content type I assume?
2. When, how, does this edit() get called?
Regards,
-West