Skip to content

Commit e33fa53

Browse files
committed
minor changes
1 parent 6ab1085 commit e33fa53

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

blog-posts/en/how-to-integrate-kendo-ui-angular-with-aspnet-zero.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Integrate Kendo UI Angular with ASP.NET Zero
22

3-
Learn how to integrate Kendo UI Angular, a comprehensive UI library, with ASP.NET Zero, a popular full stack .NET Core template based [ABP](https://aspnetboilerplate.com/). This integration enables the creation of modern, powerful web applications with enhanced productivity and performance.
3+
In this blog post, we will integrate Kendo UI Angular with ASP.NET Zero. We will create a product crud app and display data with Kendo UI's Angular Grid component. Let's dive in.
44

55
## Create a New ASP.NET Zero Project
66

@@ -16,7 +16,7 @@ https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Getting-Started-Angula
1616

1717
## Install Kendo UI Angular
1818

19-
Let's start by installing a [Calendar](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/) component. Run the following command to install the Kendo UI Angular DateInputs package.
19+
Let's start by installing a [Calendar](https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/) component. Run the following command to install the Kendo UI Angular DateInputs package in the root directory of your Angular app.
2020

2121
```bash
2222
ng add @progress/kendo-angular-dateinputs
@@ -94,11 +94,10 @@ Then, open the `AppAuthorizationProvider.cs` file and add the following permissi
9494

9595
```csharp
9696
var administration = pages.CreateChildPermission(AppPermissions.Pages_Administration, L("Administration"));
97-
9897
administration.CreateChildPermission(AppPermissions.Pages_Administration_KendoUi, L("KendoUi"));
9998
```
10099

101-
Then, create a new folder named `kendo-ui-grid` in the `src/app/admin` folder and add the following files.
100+
Then, create a new folder named `kendo-ui-grid` in the `src/app/admin` folder in the Angular app and add the following files.
102101

103102
*kendo-ui-grid.component.ts*
104103
```typescript

0 commit comments

Comments
 (0)