Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Install Wasm Tools .NET 8
run: dotnet workload install wasm-tools-net8
- name: Install Wasm Tools .NET 9
run: dotnet workload install wasm-tools-net9
- name: Install Wasm Tools .NET 10
run: dotnet workload install wasm-tools
- name: Build Server NET 8
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET8.csproj
- name: Build Server NET 9
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET9.csproj
- name: Build Server NET 10
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET10.csproj
- name: Build WASM NET 8
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET8.csproj
- name: Build WASM NET 9
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET9.csproj
- name: Build WASM NET 10
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET10.csproj
4 changes: 2 additions & 2 deletions Common/Pages/AISamples/AIAssitView/MultiModelAI.razor
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@
private AssistViewAttachmentSettings attachmentSettings = new AssistViewAttachmentSettings()
{
Enable = true,
SaveUrl = "http://localhost:63028/api/FileUploader/Save",
RemoveUrl = "http://localhost:63028/api/FileUploader/Remove"
SaveUrl = "https://blazor.syncfusion.com/services/production/api/FileUploader/Save",
RemoveUrl = "https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"
};

private string SelectedConvId = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div style="display: none;visibility: hidden;">
<SfUploader @ref="@UploadFiles" Id="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
<UploaderEvents Success="@OnUploadSuccess" OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save" RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save" RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
</SfUploader>
</div>
<DiagramSaveDialog @ref="@SaveDialogBox"></DiagramSaveDialog>
Expand Down
4 changes: 2 additions & 2 deletions Common/Pages/AISamples/Diagram/TextToFlowchart.razor
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
<div style="display: none;visibility: hidden;">
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
</SfUploader>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Common/Pages/AISamples/Diagram/TextToSequence.razor
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
<div style="display: none;visibility: hidden;">
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
</SfUploader>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Charts/Chart/RemoteData.razor
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<div class="control-section" align='center'>
<SfChart Title="Food Vs Price" Width="@Width" Theme="@Theme">
<SfDataManager Url="http://localhost:63028/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<ChartTitleStyle TextOverflow="TextOverflow.Wrap"></ChartTitleStyle>
<ChartEvents OnDataLabelRender="DataLabelEvent" OnPointRender="PointRender"></ChartEvents>
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category" LabelRotation="@Rotation" LabelIntersectAction="@Label"
Expand Down
4 changes: 2 additions & 2 deletions Common/Pages/Diagram/Diagram/FlowChart.razor
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@
<div style="display: none;visibility: hidden;">
<SfUploader @ref="@UploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
</SfUploader>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Common/Pages/Diagram/Diagram/Serialization.razor
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
</div>
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
</SfUploader>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/AutoComplete/DataBinding.razor
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfAutoComplete TValue="string" TItem="EmployeeData" PopupHeight="200px" Placeholder="Select a name" Query="@RemoteQuery" Autofill="true" @bind-Value="@EmployeeValue">
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<AutoCompleteFieldSettings Value="FirstName"/>
</SfAutoComplete>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/AutoComplete/Virtualization.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfAutoComplete TValue="string" TItem="EmployeeData" PopupHeight="130px" EnableVirtualization="true" Placeholder="Select a name" Query="@RemoteDataQuery" >
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<AutoCompleteFieldSettings Value="FirstName" />
</SfAutoComplete>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/ComboBox/DataBinding.razor
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfComboBox TValue="string" TItem="OrderDetails" PopupHeight="230px" Autofill="true" Placeholder="Select a name" Query="@RemoteDataQuery" @bind-Value="@OrderValue">
<SfDataManager Url="http://localhost:63028/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<ComboBoxFieldSettings Text="CustomerId" Value="CustomerId"/>
</SfComboBox>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/ComboBox/Virtualization.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfComboBox TValue="string" TItem="EmployeeData" PopupHeight="130px" EnableVirtualization="true" AllowFiltering="true" Placeholder="Select a name" Query="@RemoteDataQuery">
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<ComboBoxFieldSettings Text="FirstName" Value="FirstName" />
</SfComboBox>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/DropDownList/DataBinding.razor
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfDropDownList TValue="string" TItem="OrderDetails" PopupHeight="230px" Placeholder="Select a name" Query="@RemoteDataQuery" @bind-Value="@OrderValue">
<SfDataManager Url="http://localhost:63028/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" />
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" />
<DropDownListFieldSettings Text="CustomerId" Value="CustomerId"/>
</SfDropDownList>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/DropDownList/Virtualization.razor
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfDropDownList TValue="string" TItem="EmployeeData" PopupHeight="160px" EnableVirtualization="true" AllowFiltering="true" Placeholder="Select a name" Query="@RemoteDataQuery">
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<DropDownListFieldSettings Text="FirstName" Value="FirstName" />
</SfDropDownList>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/DropDownTree/Filtering.razor
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<label for="multiselection" class="selection-label" aria-label="Filter remote data by typing">Remote data</label>
<SfDropDownTree TValue="int?" TItem="ProductCategory" ID="remote" PopupHeight="230px" Placeholder="Select a Category" AllowFiltering="true" FilterType="Type">
<DropDownTreeField TItem="ProductCategory" Query="@TreeQuery" ID="Id" ParentID="ParentId" Text="Name" HasChildren="HasChild" Expanded="Expanded">
<SfDataManager Url="http://localhost:63028/api/treeview" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/treeview" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
</DropDownTreeField>
</SfDropDownTree>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/Mention/MultipleList.razor
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</div>

<SfMention TItem="EmployeeData" Target="#multipleList" Query="@Query" PopupWidth="180px" PopupHeight="250px" SuggestionCount=15 AllowSpaces="true">
<SfDataManager Url="http://localhost:63028/api/Employees" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
<MentionFieldSettings Text="FirstName" Value="EmployeeId"></MentionFieldSettings>
</SfMention>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="control-wrapper">
<label class="example-label">Select an employee</label>
<SfMultiColumnComboBox TItem="EmployeeData" TValue="string" PopupHeight="200px" Query="RemoteQuery" @bind-Value="@EmployeeValue" ValueField="EmployeeID" TextField="FirstName" PopupWidth="600px" Placeholder="e.g. Andrew">
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
</SfMultiColumnComboBox>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/MultiSelect/DataBinding.razor
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<div class="control-wrapper">
<label class="example-label">Remote Data</label>
<SfMultiSelect TValue="int?[]" TItem="EmployeeData" Placeholder="Select employees" Query="@RemoteQuery" @bind-Value="@EmployeeValue">
<SfDataManager Url="http://localhost:63028/api/Employees" Adaptor="@Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Adaptor="@Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
<MultiSelectFieldSettings Text="FirstName" Value="EmployeeId"></MultiSelectFieldSettings>
</SfMultiSelect>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/DropDowns/MultiSelect/Virtualization.razor
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="control-modes">
<label class="example-label">Remote Data</label>
<SfMultiSelect TValue="string[]" TItem="EmployeeData" PopupHeight="130px" EnableVirtualization="true" AllowFiltering="true" Placeholder="Select a name" Query="@RemoteDataQuery">
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
<MultiSelectFieldSettings Text="FirstName" Value="FirstName" />
</SfMultiSelect>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/GanttChart/LoadOnDemand.razor
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<div class="control-section e-gantt-load-on-demand-sample">
<SfGantt @ref="GanttInstance" TValue="TaskData" Height="450px" Width="100%" LoadChildOnDemand="true" EnableRowVirtualization="true" EnableTimelineVirtualization="true"
ProjectStartDate="@(new DateTime(2000, 1, 1))" ProjectEndDate="@(new DateTime(2500, 12, 31))" ScrollToTaskbarOnClick="true">
<SfDataManager Url="http://localhost:63028/api/GanttVirtualData" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/GanttVirtualData" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<GanttTaskFields Id="ID" Name="TaskName" StartDate="StartDate" EndDate="EndDate"
Duration="Duration" Dependency="Predecessor" ParentID="ParentId" HasChildMapping="IsParent">
</GanttTaskFields>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Grid/DataGrid/CheckboxSelection.razor
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</div>
@if (isChecked){
<SfGrid AllowSelection="true" AllowPaging="true" TValue="OrdersDetails">
<SfDataManager Url="http://localhost:63028/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<GridSelectionSettings CheckboxOnly="true" PersistSelection="true"></GridSelectionSettings>
<GridColumns>
<GridColumn Type="ColumnType.CheckBox" Width="50"></GridColumn>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Grid/DataGrid/HierarchyGrid.razor
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
var employee = (context as EmployeeData);
<SfGrid TValue="Order" Query="@GetEmployeesQuery(employee!)" AllowPaging="true">
<GridPageSettings PageSize="8"></GridPageSettings>
<SfDataManager Url="http://localhost:63028/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<GridTemplates>
<DetailTemplate Context="CustomerContext">
@{
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Grid/DataGrid/RemoteData.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div class="content-wrapper">
<div class="row">
<SfGrid AllowPaging="true" TValue="OrdersDetails" >
<SfDataManager Url="http://localhost:63028/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
<GridPageSettings PageCount="5"></GridPageSettings>
<GridColumns>
<GridColumn Field=@nameof(OrdersDetails.OrderID) HeaderText="Order ID" TextAlign="TextAlign.Right" Width="120"></GridColumn>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Inputs/Uploader/ChunkUpload.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class="col-lg-12 control-section">
<div class="control-wrapper">
<SfUploader MaxFileSize=104857600>
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save" RemoveUrl="http://localhost:63028/api/FileUploader/Remove" ChunkSize=500000></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save" RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove" ChunkSize=500000></UploaderAsyncSettings>
</SfUploader>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion Common/Pages/Inputs/Uploader/CustomDropArea.razor
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</div>
<div class="col-lg-6 drop-area">
<SfUploader DropArea=".drop-area-wrap" AllowedExtensions="@ExtensionAllowed">
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save" RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save" RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
<UploaderEvents OnRemove="@OnFileRemove" FileSelected="@AfterSelect"></UploaderEvents>
</SfUploader>
</div>
Expand Down
Loading
Loading