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
GGJ2GGJ2 

How to refresh Salesforce1 detail view using Visualforce

How can I refresh a Lead Detail page when running in Salesforce 1 ?

if( (typeof sforce != 'undefined') && (sforce != null) ) 
{
  // Running in Salesforce 1
  How do I refresh the page when running in Salesforce 1 ?
}
else
{
  // Not running in Salesforce 1
  var currentURL =  "https://{!URLForPage}/{!Lead.Id}";
  top.location.href = currentURL;
}
Shawn ClarkShawn Clark
You just need to use the equivilant mobile navigation command

if( (typeof sforce != 'undefined') && (sforce != null) ) 
{
  // Running in Salesforce 
var myid = {!Lead.Id};
sforce.one.navigateToSObject(myid);

}
else
{
  // Not running in Salesforce 1
  var currentURL =  "https://{!URLForPage}/{!Lead.Id}";
  top.location.href = currentURL;
}


If my answer helps resolve your query, please mark it as the 'Best Answer' & upvote it to benefit others and improve the overall quality of Discussion Forums.

Shawn 

Mobile Nav documentation: http://www.salesforce.com/us/developer/docs/salesforce1/Content/salesforce1_dev_jsapi_sforce_one.htm