You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-aspnet/getting-started-mvc/first-steps.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,10 +29,7 @@ Other popular approaches for starting with Telerik UI for ASP.NET MVC include:
29
29
30
30
* Telerik UI for ASP.NET MVC requires the <ahref="https://dotnet.microsoft.com/download/dotnet-framework"target="_blank">.NET Framework</a>.
31
31
32
-
*[Visual Studio](https://www.visualstudio.com/downloads/) 2012 or later.
33
-
34
-
For Visual Studio 2017 or later, you must install the **ASP.NET & web development** workload. See Microsoft's <ahref="/docs.microsoft.com/en-us/visualstudio/install/install-visual-studio?view=vs-2019#step-4---choose-workloads"target="_blank">Install Visual Studio workloads</a> documentation for guidance.
35
-
32
+
*[Visual Studio](https://www.visualstudio.com/downloads/) 2019, 2022, or later.
@@ -69,13 +66,19 @@ After the Visual Studio Extensions are installed, create a Telerik ASP.NET MVC a
69
66
70
67

71
68
72
-
1. Select the **GRID AND MENU** template.
69
+
1. Configure the project. Click **Create**.
70
+
71
+

72
+
73
+
1. Select the **GRID AND MENU** template. Click **Next**.
73
74
74
75
For more information on the additional predefined Telerik template options, refer to the [Creating New Projects]({% slug newprojectwizards_visualstudio_aspnetcore %}) article.
75
76
76
77

77
78
78
-
1. Select the **Default-v2** visual theme for your Telerik ASP.NET MVC Application, and click **Finish** to complete the creation of the application.
79
+
1. Choose a [Theme](https://docs.telerik.com/kendo-ui/styles-and-layout/sass-themes/overview#using-the-build-process-of-the-themes). Click **Finish**.
80
+
81
+

79
82
80
83
The newly created application already has a reference to the required `Kendo.Mvc.dll` assembly. The wizard also references the client-side resources (the Kendo UI script and theme-related CSS files) in the `_Layout.cshtml`.
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/datasource/events.md
+58-40Lines changed: 58 additions & 40 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,65 +8,83 @@ position: 5
8
8
9
9
# Events
10
10
11
-
You can subscribe to [all DataSource events](/api/kendo.mvc.ui.fluent/datasourceeventbuilder) and then use them to further customize the behavior of the DataSource.
11
+
You can subscribe to the [available DataSource events](/api/kendo.mvc.ui.fluent/datasourceeventbuilder) and further customize the behavior of the DataSource.
12
12
13
-
The example below demonstrates how to use the [`Error`](/api/kendo.mvc.ui.fluent/datasourceeventbuilder#errorsystemstring), [`RequestStart`](/api/kendo.mvc.ui.fluent/datasourceeventbuilder#requeststartsystemstring) and [`RequestEnd`](/api/kendo.mvc.ui.fluent/datasourceeventbuilder#requestendsystemstring) events.
13
+
## Handling by Handler Name
14
14
15
-
```HtmlHelper
16
-
@using Kendo.Mvc.UI
15
+
The following example demonstrates how to subscribe to events by a handler name.
0 commit comments