[PR #704] [MERGED] WebAssembly version of demos added #2287

Open
opened 2026-01-29 18:18:07 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/radzenhq/radzen-blazor/pull/704
Author: @enchev
Created: 11/14/2022
Status: Merged
Merged: 11/14/2022
Merged by: @enchev

Base: masterHead: wasm-demos


📝 Commits (10+)

  • ee58887 Demos as WASM
  • 918af14 Copy the default wasm loading CSS.
  • 2ac2410 InMemory database instead SQLite
  • d0636cc DbContext filled with data
  • 5db6d33 Host project added
  • fa940fb Server renamed to Host
  • 0f6118e Remove location.reload.
  • 1d98c49 Remove startup.
  • 48d88c5 Stop github caching to file. Use larger page size to improve load time.
  • 07a97a5 Display enum values.

📊 Changes

118 files changed (+8190 additions, -4193 deletions)

View changed files

📝 Dockerfile (+7 -6)
📝 Radzen.DocFX/docfx.json (+1 -1)
Radzen.Server.sln (+45 -0)
Radzen.WebAssembly.sln (+45 -0)
📝 Radzen.sln (+12 -0)
📝 RadzenBlazorDemos.Host/Controllers/ExportController.cs (+0 -0)
📝 RadzenBlazorDemos.Host/Controllers/ExportNorthwindController.cs (+1 -0)
📝 RadzenBlazorDemos.Host/Controllers/UploadController.cs (+0 -0)
RadzenBlazorDemos.Host/Pages/Error.cshtml (+40 -0)
RadzenBlazorDemos.Host/Pages/Error.cshtml.cs (+28 -0)
RadzenBlazorDemos.Host/Pages/Examples.cshtml (+57 -0)
📝 RadzenBlazorDemos.Host/Pages/Sitemap.cshtml (+1 -1)
RadzenBlazorDemos.Host/Pages/_Host.cshtml (+57 -0)
RadzenBlazorDemos.Host/Program.cs (+100 -0)
RadzenBlazorDemos.Host/Properties/launchSettings.json (+27 -0)
RadzenBlazorDemos.Host/RadzenBlazorDemos.Host.csproj (+18 -0)
📝 RadzenBlazorDemos.Host/Theme.razor (+0 -0)
RadzenBlazorDemos.Host/_Imports.razor (+10 -0)
RadzenBlazorDemos.Host/appsettings.Development.json (+9 -0)
RadzenBlazorDemos.Host/appsettings.json (+10 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/radzenhq/radzen-blazor/pull/704 **Author:** [@enchev](https://github.com/enchev) **Created:** 11/14/2022 **Status:** ✅ Merged **Merged:** 11/14/2022 **Merged by:** [@enchev](https://github.com/enchev) **Base:** `master` ← **Head:** `wasm-demos` --- ### 📝 Commits (10+) - [`ee58887`](https://github.com/radzenhq/radzen-blazor/commit/ee58887dc0daebcd2028668840b3ecec3d5f9ec7) Demos as WASM - [`918af14`](https://github.com/radzenhq/radzen-blazor/commit/918af14d1eaa38d9968ac89f6e50a69c3c9f2b0e) Copy the default wasm loading CSS. - [`2ac2410`](https://github.com/radzenhq/radzen-blazor/commit/2ac2410bd6c3f2fdeeaf119bee6b96a0b1254b92) InMemory database instead SQLite - [`d0636cc`](https://github.com/radzenhq/radzen-blazor/commit/d0636cc8e832a1fa10bf20d7b4c0acc01bb7fedb) DbContext filled with data - [`5db6d33`](https://github.com/radzenhq/radzen-blazor/commit/5db6d33b85cc12de3c36184c82bc879dd925705e) Host project added - [`fa940fb`](https://github.com/radzenhq/radzen-blazor/commit/fa940fb1ca938b75c8f99f00caa0644155bdc4f1) Server renamed to Host - [`0f6118e`](https://github.com/radzenhq/radzen-blazor/commit/0f6118e2bbad3e2a2a83b6361f9f9e4a8af91fee) Remove location.reload. - [`1d98c49`](https://github.com/radzenhq/radzen-blazor/commit/1d98c49f354c2ad582fbbda132fd58dd635ffce4) Remove startup. - [`48d88c5`](https://github.com/radzenhq/radzen-blazor/commit/48d88c5bff017baba3993ac1fa1ef637670d04d5) Stop github caching to file. Use larger page size to improve load time. - [`07a97a5`](https://github.com/radzenhq/radzen-blazor/commit/07a97a5323befae6fd7e105b169863547f2668e9) Display enum values. ### 📊 Changes **118 files changed** (+8190 additions, -4193 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+7 -6) 📝 `Radzen.DocFX/docfx.json` (+1 -1) ➕ `Radzen.Server.sln` (+45 -0) ➕ `Radzen.WebAssembly.sln` (+45 -0) 📝 `Radzen.sln` (+12 -0) 📝 `RadzenBlazorDemos.Host/Controllers/ExportController.cs` (+0 -0) 📝 `RadzenBlazorDemos.Host/Controllers/ExportNorthwindController.cs` (+1 -0) 📝 `RadzenBlazorDemos.Host/Controllers/UploadController.cs` (+0 -0) ➕ `RadzenBlazorDemos.Host/Pages/Error.cshtml` (+40 -0) ➕ `RadzenBlazorDemos.Host/Pages/Error.cshtml.cs` (+28 -0) ➕ `RadzenBlazorDemos.Host/Pages/Examples.cshtml` (+57 -0) 📝 `RadzenBlazorDemos.Host/Pages/Sitemap.cshtml` (+1 -1) ➕ `RadzenBlazorDemos.Host/Pages/_Host.cshtml` (+57 -0) ➕ `RadzenBlazorDemos.Host/Program.cs` (+100 -0) ➕ `RadzenBlazorDemos.Host/Properties/launchSettings.json` (+27 -0) ➕ `RadzenBlazorDemos.Host/RadzenBlazorDemos.Host.csproj` (+18 -0) 📝 `RadzenBlazorDemos.Host/Theme.razor` (+0 -0) ➕ `RadzenBlazorDemos.Host/_Imports.razor` (+10 -0) ➕ `RadzenBlazorDemos.Host/appsettings.Development.json` (+9 -0) ➕ `RadzenBlazorDemos.Host/appsettings.json` (+10 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 18:18:07 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/radzen-blazor#2287