Skip to main content

Posts

Showing posts from January, 2013

AutoSave Feature In Salesforce.

This feature is very much essential because sometimes  user might accidentally close or navigate to some  other page.That's why we need to save data.I have implemented javascript and actionFunction to get AutoSave features... This is my page. .. <apex:page StandardController="Account" extensions="savecontroller">      <apex:form >          <apex:pageBlock >          <!-- The action function which calles the Apex function 'autosave' -->               <apex:actionFunction name="autosave" action="{!autosave}" rerender="out" status="savestatus"/>               <!-- A status denotion of the update -->               <apex:actionStatus id="savestatus">                   <apex:facet name="start"> Auto Sav...