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
pdostpdost 

Class No Longer Working with Spring '12 Release

I have a very simple page that was working in my Customer Portal previous to the current release, but no longer does.  The page works fine in the general User environment, but when used in my Customer Portal, it no longer works.  Below is the page.  Also, my Profiles and Customer Portal have access to the page.

 

 Page

<apex:page showHeader="false" standardController="Product_Sales__c" recordSetVar="productsales" tabStyle="Product_Sales__c">
    <apex:form >
        <apex:pageBlock title="Update Product Sales">
        <apex:pageBlockButtons location="top">
            <apex:commandButton value="Save" action="{!save}"/>
            <apex:commandButton value="Cancel" action="{!cancel}"/>
        </apex:pageBlockButtons>
        <apex:pageBlockTable var="ps" value="{!selected}">
            <apex:column value="{!ps.Product_Category__c}"/>
            <apex:column value="{!ps.Product__c}"/>
            <apex:column value="{!ps.Product_Purchases_from_Sales_Rep__c}"/>
            <apex:column headerValue="{!$ObjectType.Product_Sales__c.Fields.Total_Customer_Wallet__c.Label}">
                <apex:inputField value="{!ps.Total_Customer_Wallet__c}"/>
            </apex:column>
            <apex:column headerValue="{!$ObjectType.Product_Sales__c.Fields.Estimated_Percentage_of_Wallet__c.Label}">
                <apex:inputField value="{!ps.Estimated_Percentage_of_Wallet__c}"/>
            </apex:column>
            <apex:column value="{!ps.Purchase_Potential_Growth__c}"/>
        </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>

 

steve456steve456

What is that u facing the problem with it

pdostpdost

The changes to the records do not save when I click Save from the Customer Portal.