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
Sujit KSujit K 

Record not getting saved using Quicksave used in standard list controller

Hello Everyone, 

Hope you're doing well.

I am having issue while saving a record that i am displaying using standard list controller for Account object. Record is not getting updated when I click on Quicksave button

Here is my code and let me know if something went wrong
<apex:page StandardController="Account"
recordSetVar="acts">
<apex:form >
    <apex:pageBlock title="Account List">  
        <apex:pageBlockTable value="{!acts}" var="a" rows="20">
            <apex:column value="{!a.name}"/>
            <apex:column value="{!a.industry}"/>
            <apex:column value="{!a.rating}"/>
            <apex:column value="{!a.phone}"/>
        </apex:pageBlockTable>

          <apex:commandButton value="Save it now" action="{!Quicksave}"/>
        
        <apex:inlineEditSupport/>
    </apex:pageBlock>
    </apex:form>
</apex:page>

Appreciate your help in advance :)