Skip to content

Commit 578a205

Browse files
Merge pull request #1 from SyncfusionExamples/GH-3770-sorting
Sample(GH-3770): Sorting samples in server and wasam
2 parents 9a1cec4 + 0181e8e commit 578a205

File tree

76 files changed

+4085
-0
lines changed

Some content is hidden

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

76 files changed

+4085
-0
lines changed

Blazor Web Assembly/Grid_Sorting/.vs/Grid_Sorting/FileContentIndex/read.lock

Whitespace-only changes.

Blazor Web Assembly/Grid_Sorting/.vs/Grid_Sorting/config/applicationhost.config

Lines changed: 972 additions & 0 deletions
Large diffs are not rendered by default.
55.5 KB
Binary file not shown.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.4.33122.133
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grid_Sorting", "Grid_Sorting\Grid_Sorting.csproj", "{89EAF507-2F1C-4A96-9B9B-84A17B493864}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{89EAF507-2F1C-4A96-9B9B-84A17B493864}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{89EAF507-2F1C-4A96-9B9B-84A17B493864}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{89EAF507-2F1C-4A96-9B9B-84A17B493864}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{89EAF507-2F1C-4A96-9B9B-84A17B493864}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {E580A05B-7C5E-4197-B0E6-0CE1CEA04196}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Router AppAssembly="@typeof(App).Assembly">
2+
<Found Context="routeData">
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
4+
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
5+
</Found>
6+
<NotFound>
7+
<PageTitle>Not found</PageTitle>
8+
<LayoutView Layout="@typeof(MainLayout)">
9+
<p role="alert">Sorry, there's nothing at this address.</p>
10+
</LayoutView>
11+
</NotFound>
12+
</Router>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.0" PrivateAssets="all" />
12+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="21.1.37" />
13+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="21.1.37" />
14+
</ItemGroup>
15+
16+
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ActiveDebugProfile>https</ActiveDebugProfile>
5+
</PropertyGroup>
6+
</Project>

0 commit comments

Comments
 (0)