Skip to content

Commit ba0c07b

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

File tree

12 files changed

+16
-4
lines changed

12 files changed

+16
-4
lines changed

ComboBox/NET10/ComboBox_ServerApp/Components/Pages/Custom/CustomValue.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
private async Task AddItem()
5858
{
5959
var customData = new TItem() { Name = Custom, Code = Custom };
60-
await this.ComboObj.AddItems(new List<TItem> { customData });
60+
await this.ComboObj.AddItemsAsync(new List<TItem> { customData });
6161
CustomDataItems.Add(customData);
6262
await this.ComboObj.HidePopupAsync();
6363
}

ComboBox/NET10/ComboBox_ServerApp/Components/_Imports.razor

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

ComboBox/NET10/ComboBox_WasmApp/ComboBox_WasmApp.Client/Pages/Custom/CustomValue.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
private async Task AddItem()
5858
{
5959
var customData = new TItem() { Name = Custom, Code = Custom };
60-
await this.ComboObj.AddItems(new List<TItem> { customData });
60+
await this.ComboObj.AddItemsAsync(new List<TItem> { customData });
6161
CustomDataItems.Add(customData);
6262
await this.ComboObj.HidePopupAsync();
6363
}

ComboBox/NET10/ComboBox_WasmApp/ComboBox_WasmApp.Client/Pages/Filtering/CustomFilter.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@page "/CustomFilter"
22

33
@using Syncfusion.Blazor.Data
4+
@using Syncfusion.Blazor.DropDowns
45
<FilteringRoute></FilteringRoute>
56

67
<SfComboBox TValue="string" @ref="comboObj" TItem="Country" Placeholder="e.g. Australia" DataSource="@Countries" AllowFiltering="true">

ComboBox/NET10/ComboBox_WasmApp/ComboBox_WasmApp.Client/Pages/HowTo/DropDownListwithTooltip.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@page "/DropDownListwithTooltip"
22
@using Syncfusion.Blazor.Popups
3+
@using Syncfusion.Blazor.DropDowns
34

45
<SfTooltip @ref="TooltipObj" ID="Tooltip" Target=".e-list-item .name[title]">
56
</SfTooltip>

ComboBox/NET10/ComboBox_WasmApp/ComboBox_WasmApp.Client/_Imports.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
@using Microsoft.JSInterop
99
@using ComboBox_WasmApp.Client
1010
@using ComboBox_WasmApp.Client.Layout
11+
@using Syncfusion.Blazor

ComboBox/NET8/ComboBox_ServerApp/Components/Pages/Custom/CustomValue.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
private async Task AddItem()
5858
{
5959
var customData = new TItem() { Name = Custom, Code = Custom };
60-
await this.ComboObj.AddItems(new List<TItem> { customData });
60+
await this.ComboObj.AddItemsAsync(new List<TItem> { customData });
6161
CustomDataItems.Add(customData);
6262
await this.ComboObj.HidePopupAsync();
6363
}

ComboBox/NET8/ComboBox_ServerApp/Components/Pages/Filtering/CustomFilter.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
@page "/CustomFilter"
22

33
@using Syncfusion.Blazor.Data
4+
@using Syncfusion.Blazor.DropDowns
5+
46
<FilteringRoute></FilteringRoute>
57

68
<SfComboBox TValue="string" @ref="comboObj" TItem="Country" Placeholder="e.g. Australia" DataSource="@Countries" AllowFiltering="true">

ComboBox/NET8/ComboBox_ServerApp/Components/Pages/HowTo/DropDownListwithTooltip.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@page "/DropDownListwithTooltip"
22
@using Syncfusion.Blazor.Popups
3+
@using Syncfusion.Blazor.DropDowns
34

45
<SfTooltip @ref="TooltipObj" ID="Tooltip" Target=".e-list-item .name[title]">
56
</SfTooltip>

ComboBox/NET8/ComboBox_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 ComboBox_ServerApp
1010
@using ComboBox_ServerApp.Components
11+
@using Syncfusion.Blazor
12+
@using Syncfusion.Blazor.DropDowns

0 commit comments

Comments
 (0)