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
BNB BaluBNB Balu 

Unable save inline edited records in standard controller list of records?

<apex:page standardController="Actress__c" recordSetVar="actress" sidebar="false" >
 <apex:form >
  <apex:pageBlock title="Display Total Records">
  
  <apex:inlineEditSupport >
   <apex:pageBlockTable var="Actress__c" value="{!actress}" columns="8">
    
     <apex:column value="{!Actress__c.Name}"/>
     <apex:column value="{!Actress__c.cost__c}"/>
    
    </apex:pageBlockTable>
   </apex:inlineEditSupport>
  <apex:pageBlockButtons >
  <apex:commandButton Value="SAVE EDITED" action="{!quicksave}"/>
  </apex:pageBlockButtons>
  </apex:pageBlock>
  
 </apex:form>
</apex:page>