Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created August 30, 2019 18:08
Show Gist options
  • Save arun12209/bbccdb505a9fbb6915629f6cdd7c8ddd to your computer and use it in GitHub Desktop.
Save arun12209/bbccdb505a9fbb6915629f6cdd7c8ddd to your computer and use it in GitHub Desktop.
ViewAccountHeirarchyController
({
navigateToAccountHierarchy: function(cmp, event, helper) {
var acctId = cmp.get('v.recordId');
var evt = $A.get("e.force:navigateToComponent");
evt.setParams({
componentDef: "sfa:hierarchyFullView",
componentAttributes: {
recordId: acctId,
sObjectName: "Account"
}
});
evt.fire();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment