You need to sign in to do that
Don't have an account?
imrohit
and my query is returing list of sObjects with its data and Createddate
and then i am assigning this list of sobject to my attribute of lightning component like this
Please help me to do this
Thanks
i am querying something like this
select id,createddate from someObject
and my query is returing list of sObjects with its data and Createddate
and then i am assigning this list of sobject to my attribute of lightning component like this
var action = component.get("c.getResponseHistory"); action.setCallback(this, function(response) { var state = response.getState(); if (state === "SUCCESS") { component.set("v.responseObject",response.getReturnValue()); } }); $A.enqueueAction(action);for each record i dont want to assign full datetime as createddate return datetime i want createddate to be converted to only date for each record
Please help me to do this
Thanks
http://sfdcMonkey.com
All Answers
http://sfdcMonkey.com