Hi I am new to Mvc I am trying to add kendo in visual studio but I am finding this following error.
CS1061: 'System.Web.Mvc.HtmlHelper' does not contain a definition for 'Kendo' and no extension method 'Kendo' accepting a first argument of type 'System.Web.Mvc.HtmlHelper' could be found (are you missing a using directive or an assembly reference?)
I followed all the steps from the link http://docs.telerik.com/kendo-ui/aspnet-mvc/asp-net-mvc-4
but I am still getting this error. Can anyone please resolve this issue for me?
Related
I have VB.net application in which Infragistics dll is showing error. I tried to get its dll but its not seems available anywhere.
its shwoing the following error while trying build the application
Exception occurred creating type 'Infragistics.Win.Misc.UltraExpandableGroupBox, Infragistics2.Win.Misc.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' System.ComponentModel.LicenseException E:\CONTRIBUTION MANAGER\Contribution Manager\Win764\ContributionManager\My Project\licenses.licx
Anybody who have any idea about this dll please help me out!!
I guess this helps, just set the build action on your license.licx to None.
Which reference has xamcarouselpanel?
When I build my project I get an error that igwindows:XamCarouselPanel was not found. My code is:
igwindows:="http://infraistics.com/Windows"
and the error occur in:
igwindows:xamcarouselpanel.ViewSetting
If anyone has a link to this dll please attach it in the answer.
First of all you should write
xmlns:igwindows="http://infragistics.com/Windows"
in xaml in order to add a namespace and you should have corresponding reference in your project.
After you installed the Infragistics on your computer you should add InfragisticsWPF.XX.X reference.
When adding a Kendo ProgressBar, I get the following error:
CS1061: 'Kendo.Mvc.UI.Fluent.WidgetFactory<dynamic>' does not contain a definition for 'ProgressBar' and no extension method 'ProgressBar' accepting a first argument of type 'Kendo.Mvc.UI.Fluent.WidgetFactory<dynamic>' could be found (are you missing a using directive or an assembly reference?)
Do I have the wrong version of Kendo or MVC?
I have Kendo.MVC version 2013.2.716.340
I have MVC version 4
I believe the ProgressBar widget was introduced in Q3 which would be 2013.3.*
I created a new MVC4 project using Razor syntax, and used NuGet to add MVCAwesome.
Looking at this page, it appears that all the expected files and configuration files appear to be in place. I made the edit to the Views/Web.config as directed.
When I try to reference any Awe() controls however, the reference to Awe() shows up in red text, and I get an error message: Cannot resolve symbol Awe()
#Html.Awe().DatePickerFor(model => model.BirthDate).ChangeMonth(true).ChangeYear(true)
Has anyone gotten this to work? What am I missing?
Just FYI, I was able to contact the maintainer of this library. It turns out that in this newer, NuGet version of the controls, you don't need the Awe() part.
For some reason, DatePickerFor still seems to be missing, but I do see other controls there from the package.
Using MVC3 and Razor View engine, I created a VB.NET web application in VS 2010. This creates the default Account and Home Controller along with corresponding Action Views.
Now if I open any vbhtml file I get the following error message in the Error List window.
Error 50 Syntax error. C:****\MVC3AppVB\Views\Account\LogOn.vbhtml MVC3AppVB
(See screenshot here http://www.flickr.com/photos/7672540#N07/5469248676/)
Who ever this app compiles and runs without any problem. I tried to create the same project using C# and there is no error message in the Error List Window.
Can anyone explain why this error message shows up only for VB and not for C#?
Thanks in advance.
The problem is with MVC3 and webpage 1.0 tooling. This issue has been answered in codeplex.
Probably some bug with the Intellisense. Try recompiling the project. Unfortunately the Razor Intellisense is far from perfect. I hope it will be improved in future releases of Razor.