This question is locked. New answers and comments are not allowed.
After upgrading my project to the latest version of Just Code, I am getting errors: "Unknown method 'Kendo()' of 'System.Web.Mvc.HtmlHelper<my class>" for every line where @Html.Kendo() was used.
In addition to the above mentioned errors, I am also getting errors "Unknown type of variable 'dataSource' and "Unknown type of variable 'model' every time I am using DataSouce.
The code compiles without any issues and the application runs just fine. I did not have any of these problems with previous version Q! 2013 of Just Code.
Thanks,
Zoran
Here is the code extract:
In addition to the above mentioned errors, I am also getting errors "Unknown type of variable 'dataSource' and "Unknown type of variable 'model' every time I am using DataSouce.
The code compiles without any issues and the application runs just fine. I did not have any of these problems with previous version Q! 2013 of Just Code.
Thanks,
Zoran
Here is the code extract:
@(Html.Kendo().ListView(Model) .Name("delivery-log-view") .TagName("div") .ClientTemplateId("delivery-log-template") .DataSource(dataSource => { dataSource.Model(model => model.Id("DeliveryLogId")); dataSource.Read(read => read.Action("Read","DeliveryLog")); dataSource.PageSize(12); }) .Pageable() .Selectable())