Created
January 29, 2020 08:17
-
-
Save srujan21/91829b70a3ab5fe3b0d00bf39b9257b3 to your computer and use it in GitHub Desktop.
show toast message in lightning aura component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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