Modal in ASP.NET Core SpeedDial Control
14 Nov 20221 minute to read
You can use the modal property to set the Speed Dial as modal which adds an overlay to prevent the background interaction.
@using Syncfusion.EJ2.Buttons
@{
List<SpeedDialItem> items = new List<SpeedDialItem>();
items.Add(new SpeedDialItem
{
IconCss = "e-icons e-cut"
});
items.Add(new SpeedDialItem
{
IconCss = "e-icons e-copy"
});
items.Add(new SpeedDialItem
{
IconCss = "e-icons e-paste"
});
}
<ejs-speeddial id="speeddial" modal=true items="items" openIconCss="e-icons e-edit" position="BottomRight"></ejs-speeddial>