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
Sachin Verma 20Sachin Verma 20 

On field change, Want to refresh the Apex Component

Hi, 

I am wokring on a Visula force page, where i need to refresh the below pageblocksection 
<apex:pageBlockSection title="Exposure Summary" columns="1" id="RefreshComp">
<c:NeMO_Credit_Exposure_Comp />
</apex:pageBlockSection>

on change of below field.
<apex:pageBlockSectionItem >
<apex:outputText >Current Approved-investment(&pound;)</apex:outputText>
<apex:inputField value="{!underdec.current_A_investment__c}" />
</apex:pageBlockSectionItem>

Please help
Vasani ParthVasani Parth
Sachin : Could you pass the some the page controller to the component as an attribute, and then have the component controller register itself with the page controller?