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
rajesh k 10rajesh k 10 

How to display records(Contact) based on picklist(Account names) selected values?

Hi,
       I displayed all account names under picklist.Based on selected picklist value how to display Contact records fields using <apex:repeat/>

thanks,
Rajesh
KevinPKevinP
Rajesh,

You need to read up on the following Visualforce tags:
 
<apex:outputPanel>
<apex:actionRegion>

You'll need to use an output panel to display contact record, and specifically the "rerender" attribute of output panel to re-render the contact record region when a new contact is selcted.