Skip to content

Instantly share code, notes, and snippets.

@amitkumarRoy
Last active July 25, 2018 10:49
Show Gist options
  • Save amitkumarRoy/650620533f0043db7d0d337d1be3380f to your computer and use it in GitHub Desktop.
Save amitkumarRoy/650620533f0043db7d0d337d1be3380f to your computer and use it in GitHub Desktop.
({
onCreate: function (component) {
var newCreateRecordEvent = $A.get('e.force:createRecord');
if ( newCreateRecordEvent ) {
newCreateRecordEvent.setParams({
'entityApiName': 'SimplusLab__c',
'defaultFieldValues': {
'CEO__c' : 'Nigam'
}
});
newCreateRecordEvent.fire();
} else {
alert(" Not Supported ");
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment