You need to sign in to do that
Don't have an account?
Saad Ahmad 33
I need to create a dynamic picklist/formula setup - help!
This issue involves 4 objects.
On the Insertions Details Record the User Needs to Specify Actual Dimensions:
What I'm looking to do is create a dynamic way so if the user selects from a picklist on the insertion child record any of the columns below (double truck actual, full page actual, junior page, etc as shown in screenshot below), then a second field will auto populate the specs data for that specific publisher and if there is no data referenceable then the user can input some value.
Is this possible?
- Insertions and child object called Insertion Details (records)
- Publisher Accounts
- Specs
On the Insertions Details Record the User Needs to Specify Actual Dimensions:
What I'm looking to do is create a dynamic way so if the user selects from a picklist on the insertion child record any of the columns below (double truck actual, full page actual, junior page, etc as shown in screenshot below), then a second field will auto populate the specs data for that specific publisher and if there is no data referenceable then the user can input some value.
Is this possible?
{
public String ownership {get;set;}
public sample()
{
}
public List<SelectOption> getownershipOptions()
{
List<SelectOption> options = new List<SelectOption>();
options.add(new selectOption('None','--- None ---'));
Schema.DescribeFieldResult fieldResult = Account.ownership.getDescribe();
List<Schema.picklistEntry> ple = fieldResult.getPicklistValues();
for(Schema.picklistEntry f:ple)
{
options.add(new selectOption(f.getLabel(),f.getValue()));
}
return Options;
}
}