Skip to content

Commit 9cf1bb1

Browse files
Migrated all projects to latest TFM and Updated NuGet Packages
1 parent 3c3292e commit 9cf1bb1

File tree

10 files changed

+14
-5
lines changed

10 files changed

+14
-5
lines changed

Kanban/NET10/Kanban_ServerApp/Components/App.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<Routes @rendermode="InteractiveServer" />
2020
<ReconnectModal />
2121
<script src="@Assets["_framework/blazor.web.js"]"></script>
22-
<script src="_content/Syncfusion.Blazor/scripts/sf-blazor.min.js"></script>
22+
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
2323
</body>
2424

2525
</html>

Kanban/NET10/Kanban_ServerApp/Components/Pages/Card Editing/DialogTemplate.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
Status = "Open",
9292
Assignee = "Nancy Davloio"
9393
};
94-
this.KanbanRef.OpenDialog(CurrentAction.Add, data);
94+
this.KanbanRef.OpenDialogAsync(CurrentAction.Add, data);
9595
}
9696

9797
private class DropDownModel

Kanban/NET10/Kanban_ServerApp/Components/_Imports.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
@using Kanban_ServerApp
1010
@using Kanban_ServerApp.Components
1111
@using Kanban_ServerApp.Components.Layout
12+
@using Syncfusion.Blazor.Kanban
13+
@using Syncfusion.Blazor

Kanban/NET10/Kanban_WasmApp/Kanban_WasmApp.Client/Pages/Card Editing/DialogTemplate.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
Status = "Open",
9292
Assignee = "Nancy Davloio"
9393
};
94-
this.KanbanRef.OpenDialog(CurrentAction.Add, data);
94+
this.KanbanRef.OpenDialogAsync(CurrentAction.Add, data);
9595
}
9696

9797
private class DropDownModel

Kanban/NET10/Kanban_WasmApp/Kanban_WasmApp.Client/_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 Kanban_WasmApp.Client
1010
@using Kanban_WasmApp.Client.Layout
11+
@using Syncfusion.Blazor.Kanban
12+
@using Syncfusion.Blazor

Kanban/NET8/Kanban_ServerApp/Components/Pages/Card Editing/DialogTemplate.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
Status = "Open",
9292
Assignee = "Nancy Davloio"
9393
};
94-
this.KanbanRef.OpenDialog(CurrentAction.Add, data);
94+
this.KanbanRef.OpenDialogAsync(CurrentAction.Add, data);
9595
}
9696

9797
private class DropDownModel

Kanban/NET8/Kanban_ServerApp/Components/Pages/Data Binding/ExpandoObject.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
@using System.Dynamic
55

6+
67
<div class="col-lg-12 control-section">
78
<SfKanban KeyField="Status" DataSource="@Tasks">
89
<KanbanColumns>

Kanban/NET8/Kanban_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 Kanban_ServerApp
1010
@using Kanban_ServerApp.Components
11+
@using Syncfusion.Blazor.Kanban
12+
@using Syncfusion.Blazor

Kanban/NET8/Kanban_WasmApp/Kanban_WasmApp.Client/Pages/Card Editing/DialogTemplate.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
Status = "Open",
9292
Assignee = "Nancy Davloio"
9393
};
94-
this.KanbanRef.OpenDialog(CurrentAction.Add, data);
94+
this.KanbanRef.OpenDialogAsync(CurrentAction.Add, data);
9595
}
9696

9797
private class DropDownModel

Kanban/NET8/Kanban_WasmApp/Kanban_WasmApp.Client/_Imports.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77
@using Microsoft.AspNetCore.Components.Web.Virtualization
88
@using Microsoft.JSInterop
99
@using Kanban_WasmApp.Client
10+
@using Syncfusion.Blazor.Kanban
11+
@using Syncfusion.Blazor

0 commit comments

Comments
 (0)