Skip to content

Commit b73056a

Browse files
Merge branch 'development' into 97900-pdfviewer
2 parents 767364a + 22d1f7e commit b73056a

22 files changed

+289
-336
lines changed

blazor-toc.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@
5252
<!-- <li> -->
5353
<!-- <a href="/blazor/getting-started/blazor-core-hosted-cli">Blazor ASP.NET Core Hosted App using .NET CLI</a> -->
5454
<!-- </li> -->
55-
<li>
56-
<a href="/blazor/getting-started/razor-class-library">Razor Class Library in Visual Studio</a>
57-
</li>
5855
<li>Blazor Hybrid
5956
<ul>
6057
<li><a href="/blazor/getting-started/maui-blazor-app">.NET MAUI</a></li>
@@ -75,6 +72,9 @@
7572
<li>
7673
<a href="/blazor/getting-started/blazor-webassembly-authentication">Blazor Standalone WebAssembly App with Authentication Library</a>
7774
</li>
75+
<li>
76+
<a href="/blazor/getting-started/razor-class-library">Razor Class Library in Visual Studio</a>
77+
</li>
7878
<li>Using Syncfusion.Blazor NuGet
7979
<ul>
8080
<li><a href="/blazor/getting-started/blazor-web-app-single-nuget">Blazor Web App</a></li>
@@ -219,6 +219,9 @@
219219
<li>
220220
<a href="/blazor/common/custom-resource-generator">Custom Resource Generator(CRG)</a>
221221
</li>
222+
<li>
223+
<a href="/blazor/common/interactive-render-mode">Interactive Render Mode</a>
224+
</li>
222225
<li>Data Binding
223226
<ul>
224227
<li>

blazor/Release-Notes/31.1.17.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Essential Studio for Blazor 2025 Volume 3 Main Release Release Notes - v31.1.17
2+
title: Essential Studio for Blazor Release Notes - v31.1.17
33
description: Essential Studio for Blazor 2025 Volume 3 Main Release Release Notes - v31.1.17
44
platform: blazor
55
documentation: ug

blazor/chart/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are availa
4949

5050
## Create a new Blazor App in Visual Studio Code
5151

52-
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-9.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio) documentation.
52+
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-9.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio?tabcontent=visual-studio-code) documentation.
5353

5454
Alternatively, you can create a Server application using the following command in the terminal(<kbd>Ctrl</kbd>+<kbd>`</kbd>).
5555

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
---
2+
layout: post
3+
title: Interactive Render Mode in Blazor Web App | Syncfusion
4+
description: Check out the documentation for Interactive Render Mode in Syncfusion Blazor Components in Blazor Web App.
5+
platform: Blazor
6+
component: Common
7+
documentation: ug
8+
---
9+
10+
# Render Interactive Modes in Blazor Web App
11+
12+
This section explains the set of commands used to create a Blazor Web App with various Interactive Render Modes. These commands can be executed via the command prompt (Windows), terminal (macOS), or shell (Linux), allowing you to create Blazor applications using different rendering modes.
13+
14+
If you set the Authentication Type as `None` and Interactivity location as `Per page/component`, you need to use the following command.
15+
16+
<table style="width:100%">
17+
<tr>
18+
<th style="width:30%">Interactive Render Mode</th>
19+
<th style="width:70%">Command</th>
20+
</tr>
21+
<tr>
22+
<td>Server</td>
23+
<td>
24+
{% highlight c# %}
25+
dotnet new blazor -o BlazorApp -int Server
26+
{% endhighlight %}
27+
</td>
28+
</tr>
29+
<tr>
30+
<td>WebAssembly</td>
31+
<td>
32+
{% highlight c# %}
33+
dotnet new blazor -o BlazorApp -int WebAssembly
34+
{% endhighlight %}
35+
</td>
36+
</tr>
37+
<tr>
38+
<td>Auto</td>
39+
<td>
40+
{% highlight c# %}
41+
dotnet new blazor -o BlazorApp -int Auto
42+
{% endhighlight %}
43+
</td>
44+
</tr>
45+
<tr>
46+
<td>None</td>
47+
<td>
48+
{% highlight c# %}
49+
dotnet new blazor -o BlazorApp -int None
50+
{% endhighlight %}
51+
</td>
52+
</tr>
53+
</table>
54+
55+
If you set the Authentication Type as `Individual Accounts` and Interactivity location as `Per page/component`, you need to use the following command.
56+
57+
<table style="width:100%">
58+
<tr>
59+
<th style="width:30%">Interactive Render Mode</th>
60+
<th style="width:70%">Command</th>
61+
</tr>
62+
<tr>
63+
<td>Server</td>
64+
<td>
65+
{% highlight c# %}
66+
dotnet new blazor -o BlazorApp -au Individual -int Server
67+
{% endhighlight %}
68+
</td>
69+
</tr>
70+
<tr>
71+
<td>WebAssembly</td>
72+
<td>
73+
{% highlight c# %}
74+
dotnet new blazor -o BlazorApp -au Individual -int WebAssembly
75+
{% endhighlight %}
76+
</td>
77+
</tr>
78+
<tr>
79+
<td>Auto</td>
80+
<td>
81+
{% highlight c# %}
82+
dotnet new blazor -o BlazorApp -au Individual -int Auto
83+
{% endhighlight %}
84+
</td>
85+
</tr>
86+
<tr>
87+
<td>None</td>
88+
<td>
89+
{% highlight c# %}
90+
dotnet new blazor -o BlazorApp -au Individual -int None
91+
{% endhighlight %}
92+
</td>
93+
</tr>
94+
</table>
95+
96+
If you set the Authentication Type as `Individual Accounts` and Interactivity location as `Global`, you need to use the following command.
97+
98+
<table style="width:100%">
99+
<tr>
100+
<th style="width:30%">Interactive Render Mode</th>
101+
<th style="width:70%">Command</th>
102+
</tr>
103+
<tr>
104+
<td>Server</td>
105+
<td>
106+
{% highlight c# %}
107+
dotnet new blazor -o BlazorApp -au Individual -int Server -ai
108+
{% endhighlight %}
109+
</td>
110+
</tr>
111+
<tr>
112+
<td>WebAssembly</td>
113+
<td>
114+
{% highlight c# %}
115+
dotnet new blazor -o BlazorApp -au Individual -int WebAssembly -ai
116+
{% endhighlight %}
117+
</td>
118+
</tr>
119+
<tr>
120+
<td>Auto</td>
121+
<td>
122+
{% highlight c# %}
123+
dotnet new blazor -o BlazorApp -au Individual -int Auto -ai
124+
{% endhighlight %}
125+
</td>
126+
</tr>
127+
<tr>
128+
<td>None</td>
129+
<td>
130+
{% highlight c# %}
131+
dotnet new blazor -o BlazorApp -au Individual -int None -ai
132+
{% endhighlight %}
133+
</td>
134+
</tr>
135+
</table>
136+
137+
If you set the Authentication Type as `None` and Interactivity location as `Global`, you need to use the following command.
138+
139+
<table style="width:100%">
140+
<tr>
141+
<th style="width:30%">Interactive Render Mode</th>
142+
<th style="width:70%">Command</th>
143+
</tr>
144+
<tr>
145+
<td>Server</td>
146+
<td>
147+
{% highlight c# %}
148+
dotnet new blazor -o BlazorApp -int Server-ai
149+
{% endhighlight %}
150+
</td>
151+
</tr>
152+
<tr>
153+
<td>WebAssembly</td>
154+
<td>
155+
{% highlight c# %}
156+
dotnet new blazor -o BlazorApp -int WebAssembly -ai
157+
{% endhighlight %}
158+
</td>
159+
</tr>
160+
<tr>
161+
<td>Auto</td>
162+
<td>
163+
{% highlight c# %}
164+
dotnet new blazor -o BlazorApp8 -int Auto -ai
165+
{% endhighlight %}
166+
</td>
167+
</tr>
168+
<tr>
169+
<td>None</td>
170+
<td>
171+
{% highlight c# %}
172+
dotnet new blazor -o BlazorApp8 -int None -ai
173+
{% endhighlight %}
174+
</td>
175+
</tr>
176+
</table>
177+
178+
N> If you want to see more available templates, you need to run the `dotnet new blazor --help` or `dotnet new blazor -h` command.

blazor/datagrid/getting-started-with-server-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ N> Syncfusion Blazor components are available in [nuget.org](https://www.nuget.o
4848

4949
## Create a new Blazor app in Visual Studio code
5050

51-
You can create a **Blazor Server app** using **Blazor Web App** template in Visual Studio code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-9.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio) documentation.
51+
You can create a **Blazor Server app** using **Blazor Web App** template in Visual Studio code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-9.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio?tabcontent=visual-studio-code) documentation.
5252

5353
Alternatively, you can create a server application using the following command in the terminal(<kbd>Ctrl</kbd>+<kbd>`</kbd>).
5454

blazor/diagram/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ N> If an Interactivity Location is set to `Global` and the **Render Mode** is se
125125

126126
## Step 1: How to Create a New Blazor App in Visual Studio Code
127127

128-
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-webassembly-app?tabcontent=visual-studio-code) documentation.
128+
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio?tabcontent=visual-studio-code) documentation.
129129

130130
Alternatively, you can create a Server application using the following command in the terminal(<kbd>Ctrl</kbd>+<kbd>`</kbd>).
131131

blazor/gantt-chart/getting-started-with-server-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: GanttChart
77
documentation: ug
88
---
99

10-
# Getting Started with Blazor Gantt Chart Component
10+
# Getting Started with Blazor Gantt Chart in Blazor Server App
1111

1212
This section briefly explains about how to include [Blazor Gantt Chart](https://www.syncfusion.com/blazor-components/blazor-gantt-chart) component in your Blazor Server App using Visual Studio and Visual Studio Code.
1313

@@ -50,7 +50,7 @@ N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are availa
5050

5151
## Create a new Blazor App in Visual Studio Code
5252

53-
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio) documentation.
53+
You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). For detailed instructions, refer to [this Blazor Server App Getting Started](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio?tabcontent=visual-studio-code) documentation.
5454

5555
Alternatively, you can create a server application using the following command in the terminal(<kbd>Ctrl</kbd>+<kbd>`</kbd>).
5656

0 commit comments

Comments
 (0)