How to use Lightning Toast in Visual force Page
As of now while including the lightning components in vf page some standard functionalities doesn't work. One among them is Toast functionality . There is a workaround to use Toast in VF pages Below are steps, Create new lightning component 1. Create Lightning Component VFToast.cmp <aura:component > <aura:attribute name="toastmsg" type="String" default=""/> <aura:attribute name="toastType" type="String" default=""/> <aura:attribute name="toastcss" type="String" default=""/> <aura:handler name="init" value="{!this}" action="{!c.doInit}" /> <div class="slds-notify_container slds-is-relative" id="toastCmp"> <div class="{!v.toastcss}" role="alert"> <div class="slds-notify__content"> <h2 class=&qu