Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jadsitt/96c81ebb4f2d9ce60dd72e7d510c7fcd to your computer and use it in GitHub Desktop.

Select an option

Save jadsitt/96c81ebb4f2d9ce60dd72e7d510c7fcd 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