I designed the view using some of the Kendo Telerik controls. I'm not sure how to bind their controls to data.
This generated construction method works:
@Html.EditorFor(model => model.surName, new { htmlAttributes = new { @class = "form-control" } })
How to link a Kendo text box?
@(Html.Kendo().TextBox() .Name("fName") .HtmlAttributes(new { placeholder = "First Name", required = "required", validationmessage="Enter First Name" }) )
source share