smanhoff
smanhoff

Reputation: 466

Kendo UI Scheduler ASP.NET MVC implementation

I'm trying to implement the Scheduler from Kendo UI web into my ASP.NET MVC4 application, i've followed this tutorial: http://docs.telerik.com/kendo-ui/getting-started/using-kendo-with/aspnet-mvc/asp-net-mvc-4

but I have some troubles like:

I have added everything: namespaces, web config, scripts, js files,... So i don't get what i'm doing wrong...

I just want to implement the open source scheduler from Kendo into my MVC .NET application, anybody any idea's on how to accomplish this?

Any help would really be appreciated!

Upvotes: 0

Views: 1788

Answers (1)

antistar
antistar

Reputation: 218

Check your web.config file. You should add missing namespaces like this:

  <namespaces>
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Web.Optimization" />
    <add namespace="Kendo.Mvc.UI" />
  </namespaces>

Upvotes: 1

Related Questions