chiapa
chiapa

Reputation: 4412

How to start using Telerik in asp.Net MVC

I want to try Telerik in my C# asp.MVC project. I downloaded and installed the Telerik for MVC and a new Telerik menu option shows in my Visual Studio 2010.

Now, I've searched for a while but I didn't find a step by step help on how to actually start using the Telerik controls.

Can someone help?

I took a look at this for a simple button but in my cshtml page the @Html.Kendo isn't recognized. I think that managing to use a simple button will allow me to use any other control.

Thanks

Upvotes: 4

Views: 8624

Answers (3)

chiapa
chiapa

Reputation: 4412

OK, got the answer. I'm posting it here since it seems like others may benefit from it.

As @ken2k mentioned, in order to use the Telerik controls, developers must add references, include css and js, etc. However, that's theory and not practice. Furthermore, that's not enough as some other steps must be taken.

After stumbling for a while, I found the solution step by step, as I wanted (and assume any first time users want) in the link below.

http://docs.telerik.com/kendo-ui/getting-started/using-kendo-with/aspnet-mvc/asp-net-mvc-4

Thanks anyway to all helpers.

Upvotes: 3

chandresh patel
chandresh patel

Reputation: 309

http://demos.telerik.com/kendo-ui/

This are all controls that you can use. In mvc Telerik controls are called kendo. Its fairly very easy just add script and css and go.

download this project for your reference and add all dll, script and css which this project has used.

http://www.codeproject.com/Articles/675879/An-Example-to-Use-Kendo-Grid

Upvotes: 2

ken2k
ken2k

Reputation: 48975

Just create a new project using their wizard.

It'll setup a new project for you with anything you need to start developing with their tools: required assemblies for the ASP.Net MVC extensions (the @Html.Kendo thing), CSS, javascripts...etc.

Upvotes: 0

Related Questions