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-core/first-steps.md
+37-24Lines changed: 37 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,60 +35,73 @@ Telerik UI for ASP.NET Core requires .NET Core. To install .NET core, follow the
35
35
## Create the Application
36
36
37
37
1. Open Visual Studio 2019 for Windows and select **Create a new project**.
38
-
1. Select **ASP.NET Core Web Application** and click **Next**.
39
-
1. Set a name and location for the project and click **Create**.
40
-
1. Select **Web Application (Model-View-Controller)** and click **Create**.
38
+
39
+
1. In the search box, enter **Model-View-Controller**, select the **ASP.NET Core Web App (Model-View-Controller)** C# template, and then select **Next**.
40
+
41
+

42
+
43
+
1. Enter **MyTelerikProject** as a project name, and then select **Next**.
44
+
45
+
1. Select the **.NET 5.0** target framework, and then select **Create**.
41
46
42
47
## Add the Telerik NuGet Feed to Visual Studio
43
48
44
49
Telerik maintains a NuGet Feed with official UI for ASP.NET Core releases and service packs. These packages are available for registered users.
45
50
46
-
* If you use a free trial license, follow [these steps](#add-the-telerik-nuget-feed-for-trial-license-users) to add the NuGet feed to Visual Studio.
47
-
* If you purchased a commercial license, follow [these steps](#add-the-telerik-nuget-feed-for-users-with-commercial-license) to add the NuGet feed to Visual Studio.
51
+
The next step is to add the Telerik NuGet Feed to Visual Studio:
48
52
49
-
>**Tip**
50
-
>
51
-
>If you have already configured the Telerik NuGet feed in Visual Studio, jump to [Add the NuGet Package](#add-the-nuget-package).
53
+
* If you use a free trial license, go to [Add the Telerik NuGet Feed for Trial License Users](#add-the-telerik-nuget-feed-for-trial-license-users).
54
+
* If you purchased a commercial license, go to [Add the Telerik NuGet Feed for Users with Commercial License](#add-the-telerik-nuget-feed-for-users-with-commercial-license).
55
+
56
+
>tipIf you have already configured the Telerik NuGet feed in Visual Studio, jump to [Add the NuGet Package](#add-the-nuget-package).
52
57
53
58
### Add the Telerik NuGet Feed for Trial License Users
54
59
55
60
The easiest way to add the Telerik NuGet feed to Visual Studio if you are a trial user is to install the UI for ASP.NET Core free trial:
56
61
57
62
1. Download the [UI for ASP.NET Core free trial](https://www.telerik.com/aspnet-core-ui) installer. You need to create a free account if don't have one.
63
+
58
64
1. Run the installer.
65
+
59
66
1. Select the option **Set up Telerik NuGet package source** to automatically add the [Telerik NuGet feed]({% slug nuget_install_aspnetmvc6_aspnetmvc %}).
60
67
61
-

62
-
68
+

69
+
70
+
>To activate your UI for ASP.NET Core trial license, you must complete the installation procedure. Otherwise, the `Telerik.UI.for.AspNet.Core` NuGet packages will not appear in the NuGet Package Manager.
71
+
63
72
### Add the Telerik NuGet Feed for Users with Commercial License
64
73
65
-
The easiest way to add the Telerik NuGet feed to Visual Studio if you purchased a commercial license is to use the Progress Control Panel:
74
+
The easiest way to add the Telerik NuGet feed to Visual Studio if you have purchased a commercial license is to use the Progress Control Panel:
66
75
67
76
1. Download the Progress Control Panel from the **Overview** page of your [Telerik account](https://www.telerik.com/account/).
68
77
69
-

70
-
78
+

79
+
71
80
1. Run the Progress Control Panel exe.
72
81
73
82
1. On the Login screen, check the **set up Telerik NuGet package source** option.
74
83
75
-

76
-
77
-
1. If you miss to set up the Nuget Feed on login, go to the Progress Control Panel options and scroll to **Nuget Settings**. Enter your Telerik credentials and click the **Save and Close** button.
78
-
79
-

80
-
84
+

85
+
86
+
1. If you miss to set up the NuGet Feed on login, go to the Progress Control Panel options and scroll to **NUGET SETTINGS**. Enter your Telerik credentials and click the **Save and Close** button.
87
+
88
+

89
+
90
+
>You need a commercial license that includes UI for ASP.NET Core. Otherwise, the `Telerik.UI.for.AspNet.Core` NuGet packages will not appear in the NuGet Package Manager. If you don't have the required license, follow the instructions in the [trial license section](#add-the-telerik-nuget-feed-for-trial-license-users).
91
+
81
92
## Add the NuGet Package
82
93
83
94
1. Open the NuGet Package Manager.
84
95
85
-

96
+

86
97
87
98
1. From the **Package source** drop-down, select the Telerik NuGet source.
88
99
89
-
1. Click the **Browse** tab and search for `Telerik.UI.for.AspNet.Core` to install it. As a result, a line similar to `<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="{{ site.mvcCoreVersion }}" />` is added to your `.csproj` file.
100
+
1. Select the **Browse** tab, and then enter `Telerik.UI.for.AspNet.Core` in the search field.
101
+
102
+
1. Select the project's checkbox and then select **Install**. As a result, a line similar to `<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="{{ site.mvcCoreVersion }}" />` is added to your `.csproj` file.
90
103
91
-

104
+

92
105
93
106
## Add a Reference to Kendo.Mvc.UI
94
107
@@ -102,8 +115,8 @@ The easiest way to add the Telerik NuGet feed to Visual Studio if you purchased
102
115
103
116
1. Import the `Kendo.Mvc.UI` namespace in `~/Views/_ViewImports.cshtml` through `@using Kendo.Mvc.UI`. If you intend to use the Telerik UI ASP.NET Core Tag Helpers, add them with `@addTagHelper *, Kendo.Mvc`.
Copy file name to clipboardExpand all lines: docs-aspnet/installation/overview-download.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,10 @@ Telerik UI for ASP.NET Core requires .NET Core. To install .NET core, follow the
18
18
19
19
To download and install Telerik UI for ASP.NET Core, you can use either of the following approaches:
20
20
21
-
* The [Windows MSI installer package]({% slug msi_install_aspnetmvc6_aspnetmvc %}) comes with a standard setup wizard. The setup wizard installs the Telerik UI for ASP.NET Core server-side packages and the client-side resources. The MSI allows you to chose whether to install the offline version of the [Telerik UI for ASP.NET Core Demos](https://demos.telerik.com/aspnet-core) and the [Telerik UI for ASP.NET Core Visual Studio extensions]({% slug overview_visualstudio_aspnetcore %}). There is also an option that configures the Telerik NuGet feed for you.
21
+
* Automated installer:
22
+
* Windows (`.msi`). The [Windows MSI installer package]({% slug msi_install_aspnetmvc6_aspnetmvc %}) comes with a standard setup wizard. The setup wizard installs the Telerik UI for ASP.NET Core server-side packages and the client-side resources. The MSI allows you to chose whether to install the offline version of the [Telerik UI for ASP.NET Core Demos](https://demos.telerik.com/aspnet-core) and the [Telerik UI for ASP.NET Core Visual Studio extensions]({% slug overview_visualstudio_aspnetcore %}). There is also an option that configures the Telerik NuGet feed for you.
23
+
* MacOS (`.pkg`)
24
+
* Linux (.sh + .tar.gz). Pass -s <pathtothearchive> when running the script. Other arguments are -d for the location where the archive will be extracted (defaults to ${HOME}/telerik-aspnetcore") and -SkipNETCoreInstall to skip the installation of .NET Core (note that the framework is required).
22
25
*[NuGet]({% slug nuget_install_aspnetmvc6_aspnetmvc %}) allows you to install only the packages that you need for your project. The Telerik Nuget feed is available only to registered users because it requires authentication.
23
26
*[NPM]({% slug npmpackages_core %}) offers another way to install the needed packages for your project.
24
27
*[Bower]({% slug bowerpackage_core %}) was a popular package manager but starting with ASP.NET Core v2.1 it is no longer supported.
Copy file name to clipboardExpand all lines: docs/api/javascript/ui/splitter.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -473,6 +473,8 @@ The pane(s) to be removed.
473
473
474
474
Get or set the size of the pane. Setting this value will cause the widget to redraw and it will trigger the `resize` event.
475
475
476
+
> Note: The correct usage of the method requires that the size of the panes should be set either through the [panes.size](/api/javascript/ui/splitter/configuration/panes#panes.size) property or the `size` method. Otherwise, the method will return *undefined*.
0 commit comments