You need to sign in to do that
Don't have an account?

Visualforce Error Help for this Page Visualforce pages may not display more than 10 dependent picklists together with their controlling fields. This includes any picklists in components or inline pages.
<apex:pageBlockSection title="Section 6: " columns="2" >
<apex:inputField value="{!Product_Brief__c.System_Size_SUB_2013__c}" />
<apex:inputField value="{!Product_Brief__c.Quantity_SUB_2013__c}" />
<apex:inputField value="{!Product_Brief__c.Stainless_Steel_Type__c}" />
<apex:inputField value="{!Product_Brief__c.Electrical_Cabinet_Placement__c}" />
<apex:inputField value="{!Product_Brief__c.RTD_Connection_SUF__c}" />
<apex:inputField value="{!Product_Brief__c.Loadcell_Kits__c}" />
<apex:inputField value="{!Product_Brief__c.Display__c}" />
<apex:inputField value="{!Product_Brief__c.Cable_Management_Tree_SUF__c}"/> -->
</apex:pageBlockSection>
My customize visual page I already have 10 pick list value. Cable_Management_Tree_SUF__c this input picklist have 3 values. Can anybody please tell me how insert this input field in my page.
Thanks
<apex:inputField value="{!Product_Brief__c.System_Size_SUB_2013__c}" />
<apex:inputField value="{!Product_Brief__c.Quantity_SUB_2013__c}" />
<apex:inputField value="{!Product_Brief__c.Stainless_Steel_Type__c}" />
<apex:inputField value="{!Product_Brief__c.Electrical_Cabinet_Placement__c}" />
<apex:inputField value="{!Product_Brief__c.RTD_Connection_SUF__c}" />
<apex:inputField value="{!Product_Brief__c.Loadcell_Kits__c}" />
<apex:inputField value="{!Product_Brief__c.Display__c}" />
<apex:inputField value="{!Product_Brief__c.Cable_Management_Tree_SUF__c}"/> -->
</apex:pageBlockSection>
My customize visual page I already have 10 pick list value. Cable_Management_Tree_SUF__c this input picklist have 3 values. Can anybody please tell me how insert this input field in my page.
Thanks


Dhananjaya, the following thread suggested a workaround to this problem.Worth a read: http://salesforce.stackexchange.com/questions/12018/creating-a-vf-page-dependent-picklist-error

Thanks Sonam