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
Madhu SFDC PhoenixMadhu SFDC Phoenix 

Rerender Apex Component

hi,

I have a vf page. I am calling rerender from action function. But the Rerender doesnt work
<apex:form>
<div class="panel-group" id="FromAction">
    <apex:outputPanel id="projectcomp">
    <apex:actionstatus id="counterStatus">
        <apex:facet name="start">
            <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb;">
                <div class="waitingHolder">
                <img class="waitingImage" src="/img/loading.gif" title="Please Wait..." />
                <span class="waitingDescription">Loading...</span>
                </div>
            </div>
        </apex:facet>
        <apex:facet name="stop">
            <c:Rollouts pId="{!project.Id}" /> 
        </apex:facet>
    </apex:actionstatus>
    </apex:outputPanel> 
    <apex:actionFunction name="paraFunction1" status="counterStatus" reRender="projectcomp" />   
</div>
<apex:commandLink value="FOrmat Plans" onclick="getClusters();" oncomplete="paraFunction1();" /> 
</apex:form>
SarfarajSarfaraj
Try this,
 
<apex:form>
<div class="panel-group" id="FromAction">
    <apex:outputPanel id="projectcomp">
    <apex:actionstatus id="counterStatus">
        <apex:facet name="start">
            <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb;">
                <div class="waitingHolder">
                <img class="waitingImage" src="/img/loading.gif" title="Please Wait..." />
                <span class="waitingDescription">Loading...</span>
                </div>
            </div>
        </apex:facet>
        <apex:facet name="stop">
            <c:Rollouts pId="{!project.Id}" /> 
        </apex:facet>
    </apex:actionstatus>
    </apex:outputPanel> 
    <apex:actionFunction name="paraFunction1" status="counterStatus" reRender="projectcomp" />   
</div>
<apex:commandLink value="FOrmat Plans" oncomplete="getClusters();paraFunction1();" reRender="none"/> 
</apex:form>