Skip to content

Commit ffc7f9b

Browse files
Migrated all projects to latest TFM and Updated NuGet Packages
1 parent 3ead3a1 commit ffc7f9b

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

DropDownMenu/NET10/DropDownMenu_ServerApp/Components/Pages/How To/OpenDialogOnPopupItemClick.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929
private void click(object args)
3030
{
31-
DialogObj.Hide();
31+
DialogObj.HideAsync();
3232
}
3333

3434
private void select(MenuEventArgs args)
3535
{
3636
if (args.Item.Text == "Update")
3737
{
38-
DialogObj.Show();
38+
DialogObj.ShowAsync();
3939
}
4040
}
4141
}

DropDownMenu/NET10/DropDownMenu_WasmApp/DropDownMenu_WasmApp.Client/Pages/How To/OpenDialogOnPopupItemClick.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929
private void click(object args)
3030
{
31-
DialogObj.Hide();
31+
DialogObj.HideAsync();
3232
}
3333

3434
private void select(MenuEventArgs args)
3535
{
3636
if (args.Item.Text == "Update")
3737
{
38-
DialogObj.Show();
38+
DialogObj.ShowAsync();
3939
}
4040
}
4141
}

DropDownMenu/NET8/DropDownMenu_ServerApp/Components/Pages/How To/OpenDialogOnPopupItemClick.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929
private void click(object args)
3030
{
31-
DialogObj.Hide();
31+
DialogObj.HideAsync();
3232
}
3333

3434
private void select(MenuEventArgs args)
3535
{
3636
if (args.Item.Text == "Update")
3737
{
38-
DialogObj.Show();
38+
DialogObj.ShowAsync();
3939
}
4040
}
4141
}

DropDownMenu/NET8/DropDownMenu_ServerApp/Components/_Imports.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
@using Microsoft.JSInterop
99
@using DropDownMenu_ServerApp
1010
@using DropDownMenu_ServerApp.Components
11+
@using Syncfusion.Blazor
12+
@using Syncfusion.Blazor.Popups

DropDownMenu/NET8/DropDownMenu_WasmApp/DropDownMenu_WasmApp.Client/Pages/How To/OpenDialogOnPopupItemClick.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929
private void click(object args)
3030
{
31-
DialogObj.Hide();
31+
DialogObj.HideAsync();
3232
}
3333

3434
private void select(MenuEventArgs args)
3535
{
3636
if (args.Item.Text == "Update")
3737
{
38-
DialogObj.Show();
38+
DialogObj.ShowAsync();
3939
}
4040
}
4141
}

0 commit comments

Comments
 (0)