Events in Blazor Toast Component
27 Sep 20211 minute to read
This section explains the list of events of the Toast component which will be triggered for appropriate Toast actions.
Created
Created
event triggers after the Toast gets created.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents Created="@CreatedHandler" ></ToastEvents>
</SfToast>
@code{
public void CreatedHandler(Object args)
{
// Here you can customize your code
}
}
Destroyed
Destroyed
event triggers after the Toast gets destroyed.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents Destroyed="@DestroyedHandler" ></ToastEvents>
</SfToast>
@code{
public void DestroyedHandler(Object args)
{
// Here you can customize your code
}
}
Opened
Opened
event triggers after the Toast shown on the target container.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents Opened="@OpenedHandler" ></ToastEvents>
</SfToast>
@code{
public void OpenedHandler(ToastOpenArgs args)
{
// Here you can customize your code
}
}
OnOpen
OnOpen
event triggers before the toast shown.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents OnOpen="@OnOpenHandler" ></ToastEvents>
</SfToast>
@code{
public void OnOpenHandler(ToastBeforeOpenArgs args)
{
// Here you can customize your code
}
}
Closed
Closed
event triggers after the Toast hides.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents Closed="@ClosedHandler" ></ToastEvents>
</SfToast>
@code{
public void ClosedHandler(ToastCloseArgs args)
{
// Here you can customize your code
}
}
OnClick
OnClick
event triggers while clicking on the Toast.
@using Syncfusion.Blazor.Notifications
<SfToast>
<ToastEvents OnClick="@OnClickHandler" ></ToastEvents>
</SfToast>
@code{
public void OnClickHandler(ToastClickEventArgs args)
{
// Here you can customize your code
}
}