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
MG1MG1 

Problem rerendering inside apex:repeat

The code below is inside a datatable and the columntotal component will not rerender ( highlighed in red) as expected. This code is inside a pageBlock table and I do not want to rerender the entire table because it will slow the user's entry too  much. The rerender does work for the rowtotal componenet which is a column outside of the apex:repeat component. Thanks in advance for any assistance.

 


<apex:repeat value="{!wrappedColumns}" var="col" id="myrepeat">
<apex:column id="mycolumn">
<apex:facet name="header">{!col.header}</apex:facet>
<apex:inputtext value="{!target[col.Value]}" size="{!targetinputwidth}" rendered="{!target.TargetName <> ''}">
<apex:actionSupport action="{!UpdateAllTargetRowTotals}" event="onchange" rerender="rowtotal, columntotal" />
</apex:inputtext>
<apex:facet name="footer">
<apex:outputpanel id="columntotal" layout="none">
<apex:outputtext value="{!col.columntotal}" />
</apex:outputPanel>
</apex:facet>
</apex:column>
</apex:repeat>