Skip to content

Instantly share code, notes, and snippets.

@srujan21
Created January 29, 2020 08:17
Show Gist options
  • Save srujan21/91829b70a3ab5fe3b0d00bf39b9257b3 to your computer and use it in GitHub Desktop.
Save srujan21/91829b70a3ab5fe3b0d00bf39b9257b3 to your computer and use it in GitHub Desktop.
show toast message in lightning aura component
showToast : function(component, event, helper, message, title, type) {
var toastEvent = $A.get("e.force:showToast");
toastEvent.setParams({
"title": title,
"message": message,
"type": type || "other"
});
toastEvent.fire();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment