Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import { NavigationMixin } from 'lightning/navigation';
  2.  
  3. navigateToCorpconEdit(row) {
  4. let { linkName } = row;
  5. let recordid = linkName.substr(1);
  6.  
  7. this[NavigationMixin.Navigate]({
  8. type: 'standard__recordPage',
  9. attributes: {
  10. recordId: recordid,
  11. objectApiName: 'npe5__Affiliation__c',
  12. actionName: 'edit'
  13. },
  14. });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement