Hello!
I can't show a toast.
I followed the demo at this address https://blazor.syncfusion.com/demos/toast/default-functionalities?theme=bootstrap4
I am using version 18.3.47
My code is this:
<SfToast @ref="ToastObj" Title="Adaptive Tiles Meeting" Timeout=5000 Icon="e-meeting" Content="Prova">
<ToastPosition X="Right"></ToastPosition>
</SfToast>
<SfButton @onclick="this.ShowToast"
Content="ShowToast"/>
private async Task ShowToast ()
{
await this.ToastObj.Show ();
}
Looking at the generated html I saw that the "e-blazor-toast-hidden" css rule is applied which has visibility hidden
I also tried setting some delays or calling the Hide ("All") method and then showing the toast with Show () but it doesn't work
Am I wrong something? Can you kindly help me?
Thanks
Luca