ToastMessage
showInfoToast : function(component, event, helper) { var toastEvent = $A.get("e.force:showToast"); toastEvent.setParams({ title : 'Info Message', message: 'Mode is dismissible ,duration is 5sec and this is normal Message', messageTemplate: 'Record {0} created! See it {1}!', duration:' 5000', key: 'info_alt', type: 'info', mode: 'dismissible' }); toastEvent.fire(); }, showSuccessToast : function(component, event, helper) { var toastEvent = $A.get("e.force:showToast"); toastEvent.setPar...