• Nikita
  • NEWBIE
  • 15 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 4
    Replies
Hi 

This is regarding date format on Activity Timeline. 
The date format does not include year, it shows only the day and the month.
Could anyone provide me the salesforce link for this update, as this update is not mentioned in the release notes

Kind Regards,
Nikita Acharya
  • January 27, 2017
  • Like
  • 0
Hello,

Is there any tool i could use check code coverage and the ines covered like we see in Dev console.

I am uable to check code coverage lines in my dev org. hence finding alternative.

thanks for suggestion !
 
  • February 09, 2017
  • Like
  • 0
I am using REST API to get data of all contacts in my salesforce. When retrieving the object, there is 2 json values for Account ID (Account Id and Account.Id) which one should be used and why is there 2?

User-added image
We have a button in a Lightning component as follows:
<ui:button label="Associate" press="{!c.associateUsages}"></ui:button>

The controller function looks like this:
    associateUsages: function (component, event, helper) {
        var recordId = component.get("v.recordId");
        var url = '/apex/OpportunityCustomerUsages?id=' + recordId;
        window.open(url, '_self');
    }

This works except that the VF page that is invoked is standalone and doesn't get decorated with the Lightning UI wrapper. And we'd like for it to look like a Lightning page with the UI wrapper. Any suggestions? Thanks in advance.