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
robert webber 8robert webber 8 

Action not called on pageBlockTable change

I want to call a controller method after the user changes a value in a pageBlockTable and then hits enter.  The table is within a pageBlock (not pageBlockSection). I tried this on one of the columns but it doesn't invoke "PlanSalesProfileChange". Any ideas? The table is within an apex:tab but I don't think that would make any difference. I tried it without using the formatting and param but it doesn't make any difference.

<apex:column headerValue="Year 1">
    <apex:outputText value="{0,number,#,###}">
       <apex:param value="{!f.Year1__c}"/>
        <apex:actionSupport event="onchange" action = {!PlanSalesProfileChange}" rerender="idSalesSlider,idPlanProfile,idPlanSales"/>                                      
    </apex:outputText>                                                
</apex:column>