• SandeeVy
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
Hi All

We are facing an issue with Summer 18 updates - This is a standard page 
View All Dependencies is a new feature came in Summer 18 Rls. If the custom field is ready only on purpose and Now if the end users click on view all dependencies(related to custom field which is ready only) and they are able to edit the dependencies fields but they won't be able to save the changes.... I did not see anyone has raised this as a known issue here. 

Does anyone has any solution for this issue ??? Appreciate your help

View All Dependencies Feature
Hello everyone.

Good Evening

I am facing an issue here.

We are working on Account ownership change from A to B and along with Account ownership change, we have to move all the related objects like sales, opportunities, leads, cases, events etc should be visible to new owner B.

I am not able to do any apex sharing for events(calendar). want to share all the future events created by owner A to owner B ? Can anyone please help here ? Appreciate all your support.
When I add a competitor and after I hit Save button, it does not automatically show the record in the list. either I have to refresh the page or leave that record and come back to see it.
Hello! Please help me with the code below.
I created an action button that opens the VF page on SF1 record
After i hit SAVE button the  VF page closes but values in Project__c.l__c/Project__c.ll__c stays the same (old)
I have to pull down the page to see the results. 
how to automatically update the record window after clicking on the save button?
 
<apex:page standardController="Project__c" id="page" docType="html-5.0">
<script>
geoFindMe()
function geoFindMe() {
  var output = document.getElementById("out");

  if (!navigator.geolocation){
    output.innerHTML = "<p>Geolocation is not supported by your browser</p>";
    return;
  }

  function success(position) {
    var latitude  = position.coords.latitude;
    var longitude = position.coords.longitude;

    document.getElementById('page:form:lati').value = latitude.toString().replace(".",",")  ;
    document.getElementById('page:form:long').value = longitude.toString().replace(".",",")  ; 
    document.getElementById('page:form:SF1').checked = true;

   
  };

  function error() {
    output.innerHTML = "Unable to retrieve your location";
  };

  navigator.geolocation.getCurrentPosition(success, error);
}
</script>


<apex:form id="form">

  <div style="display:none;"></div>
latitude :<apex:inputField id="lati"  value="{!Project__c.l__c}" /> <br></br>
longitude :<apex:inputField id="long" value="{!Project__c.ll__c}" />
<apex:inputField id="SF1" value="{!Project__c.SF1__c}" />


<apex:commandButton action="{!save}"  value="Save"/>

                     
                     
                     
</apex:form>

</apex:page>

 
Here’s a free lightning based Event calendar. Basically it builds an calendar based on the event object.  Once built it allows for sorting the calendar by department.  Also within the calendar it allows for creating and editing new events (with limited functionality, no changing owners in the calendar, or creating recurring events).
 
Anyway, feel free to use or share.


https://github.com/Kroneborge/Lightning-Calendar