This is a migrated thread and some comments may be shown as answers.

Problem with version Q2 2013 (2013.2.611.6)

1 Answer 25 Views
Code Analysis
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Dj Prpa
Top achievements
Rank 1
Dj Prpa asked on 13 Jun 2013, 01:39 PM
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:
@(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()
)

1 Answer, 1 is accepted

Sort by
0
Nikolay Valchev
Telerik team
answered on 17 Jun 2013, 08:36 AM
Hi,

Thank you for the feedback.
We are aware of this issue and we are providing a fix which will be released in some of the next internal builds so, please, stay tuned.

Regards,
Nikolay Valchev
Telerik
Share what you think about JustCode with us, so we can help you even better! You can use the built-in feedback tool inside JustCode, our forum, or our JustCode feedback portal.
Tags
Code Analysis
Asked by
Dj Prpa
Top achievements
Rank 1
Answers by
Nikolay Valchev
Telerik team
Share this question
or