function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
anu_karthianu_karthi 

Dependncy fields...

Hi Every one,

 

I have created dependency fields in salesforce..... I want to call those fields in visualforce pg.Can some one help me with the code in clling dependency fields in salesforce......

 

 

                                                         Thanks in advance,

 

 

                                                                   Anu...

ShamSham

Dependent fields are still not supported out of the box in VF.

WmWm
For dependent picklist fields, you can use java script.
Cool_DevloperCool_Devloper

Well, as Sham mentioned, the point here is that VF does not support the dependency out of box as it works on standard pages.

You can achieve it through custom code, either in JS or in the controller as well but you need to decide on how are you going to configure the dependency!

Either in the code or using a junction object.

Cool_D