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
clouduserclouduser 

rerender the details for a record when we select the record that was displayed in visualforce page

rerender the detail page for a record when we select the record that was displayed in visualforce page using enhancedlist view

Any thoughts/examples to accomplish this? 

 

<apex:page controller="CustomController">
<apex:enhancedList type="Custom_object__C" height="300" rowsPerPage="10" id="ObjectRecordsList" />
<apex:outputpanel id="detail">
<apex:pageblock>
<apex:pageblocktable >
//rerender this details page based on the particular record selection in above records listing........?

</apex:pageblocktable>
</apex:pageblock>
</apex:outputpanel>
</apex:page>