Skip to content

Commit 85f6108

Browse files
Merge pull request #174 from BharatRamsf3693/master
v27.1.48
2 parents 22071d4 + ddb36ac commit 85f6108

71 files changed

Lines changed: 179 additions & 87 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Blazor-MAUI-Demos/Pages/Charts/Chart/RemoteData.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
<div class="control-section" align='center'>
4040
<SfChart Title="Food Vs Price" Width="@Width" Theme="@Theme">
41-
<SfDataManager Url="http://localhost:63028/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
41+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
4242
<ChartEvents OnDataLabelRender="DataLabelEvent" OnPointRender="PointRender"></ChartEvents>
4343
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category" LabelRotation="@Rotation" LabelIntersectAction="@Label"
4444
RangePadding="ChartRangePadding.Additional">

Blazor-MAUI-Demos/Pages/DropDowns/AutoComplete/DataBinding.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<div class="control-wrapper">
7878
<label class="example-label">Remote Data</label>
7979
<SfAutoComplete TValue="string" TItem="EmployeeData" Placeholder="Select a name" Query="@RemoteQuery" @bind-Value="@EmployeeValue">
80-
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
80+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
8181
<AutoCompleteFieldSettings Value="FirstName"/>
8282
</SfAutoComplete>
8383
</div>

Blazor-MAUI-Demos/Pages/DropDowns/ComboBox/DataBinding.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<div class="control-wrapper">
7373
<label class="example-label">Remote Data</label>
7474
<SfComboBox TValue="string" TItem="OrderDetails" PopupHeight="230px" Autofill="true" Placeholder="Select a name" Query="@RemoteDataQuery" @bind-Value="@OrderValue">
75-
<SfDataManager Url="http://localhost:63028/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
75+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
7676
<ComboBoxFieldSettings Text="CustomerID" Value="CustomerID"/>
7777
</SfComboBox>
7878
</div>

Blazor-MAUI-Demos/Pages/DropDowns/DropDownList/DataBinding.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<div class="control-wrapper">
6969
<label class="example-label">Remote Data</label>
7070
<SfDropDownList TValue="string" TItem="OrderDetails" PopupHeight="230px" Placeholder="Select a name" Query="@RemoteDataQuery" @bind-Value="@OrderValue">
71-
<SfDataManager Url="http://localhost:63028/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" />
71+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" />
7272
<DropDownListFieldSettings Text="CustomerID" Value="CustomerID"/>
7373
</SfDropDownList>
7474
</div>

Blazor-MAUI-Demos/Pages/DropDowns/DropDownTree/Filtering.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<label for="multiselection" class="selection-label">Remote data</label>
3737
<SfDropDownTree TValue="int?" TItem="ProductCategory" ID="remote" PopupHeight="230px" Placeholder="Select a Category" AllowFiltering="true" FilterType="Type">
3838
<DropDownTreeField TItem="ProductCategory" Query="@TreeQuery" ID="Id" ParentID="ParentId" Text="Name" HasChildren="HasChild" Expanded="Expanded">
39-
<SfDataManager Url="http://localhost:63028/api/treeview" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
39+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/treeview" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
4040
</DropDownTreeField>
4141
</SfDropDownTree>
4242
</div>

Blazor-MAUI-Demos/Pages/DropDowns/Mention/MultipleList.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</div>
3939

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

Blazor-MAUI-Demos/Pages/DropDowns/MultiSelect/DataBinding.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<div class="control-wrapper">
6969
<label class="example-label">Remote Data</label>
7070
<SfMultiSelect TValue="int?[]" TItem="EmployeeData" Placeholder="Select employees" Query="@RemoteQuery" @bind-Value="@EmployeeValue">
71-
<SfDataManager Url="http://localhost:63028/api/Employees" Adaptor="@Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
71+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Adaptor="@Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
7272
<MultiSelectFieldSettings Text="FirstName" Value="EmployeeID"></MultiSelectFieldSettings>
7373
</SfMultiSelect>
7474
</div>

Blazor-MAUI-Demos/Pages/GanttChart/GanttChart/LoadOnDemand.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<SfGantt TValue="TaskData" Height="450px" Width="100%" LoadChildOnDemand="false" EnableVirtualization="true"
3131
ProjectStartDate="@ProjectStartDate" ProjectEndDate="@ProjectEndDate" ScrollToTaskbarOnClick="true" EnableAdaptiveUI="true">
3232

33-
<SfDataManager Url="http://localhost:63028/api/GanttVirtualData" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
33+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/GanttVirtualData" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
3434
<GanttTaskFields Id="ID" Name="TaskName" StartDate="StartDate" EndDate="EndDate"
3535
Duration="Duration" Dependency="Predecessor" ParentID="ParentId" HasChildMapping="isParent">
3636
</GanttTaskFields>

Blazor-MAUI-Demos/Pages/GanttChart/GanttChart/RemoteData.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<div class="col-md-12">
4545
<SfGantt TValue="GanttRemoteData" TreeColumnIndex="1" Height="450px" Width="100%" AllowSelection="true" HighlightWeekends="true"
4646
GridLines="GridLine.Both" ProjectStartDate="@ProjectStart" ProjectEndDate="@ProjectEnd" EnableAdaptiveUI="true">
47-
<SfDataManager Url="http://localhost:63028/api/GanttData" Adaptor="Adaptors.WebApiAdaptor" CrossDomain="true"></SfDataManager>
47+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/GanttData" Adaptor="Adaptors.WebApiAdaptor" CrossDomain="true"></SfDataManager>
4848
<GanttTaskFields Id="TaskId" Name="TaskName" StartDate="StartDate"
4949
Duration="Duration" Progress="Progress" Dependency="Predecessor" Child="SubTasks">
5050
</GanttTaskFields>

Blazor-MAUI-Demos/Pages/Grid/DataGrid/HierarchyGrid.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
var employee = (context as EmployeeData);
3333
<SfGrid TValue="Order" Query="@GetEmployeesQuery(employee)" AllowPaging="true">
3434
<GridPageSettings PageSize="8"></GridPageSettings>
35-
<SfDataManager Url="http://localhost:63028/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
35+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Orders/" CrossDomain="true" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
3636
<GridTemplates>
3737
<DetailTemplate Context="CustomerContext">
3838
@{

0 commit comments

Comments
 (0)