c# – 如何将Kendo Textbox控件绑定到其数据?

前端之家收集整理的这篇文章主要介绍了c# – 如何将Kendo Textbox控件绑定到其数据?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用了一些Kendo Telerik控件设计了一个视图.我不知道如何将他们的控件绑定到数据.

这个生成的脚手架方法有效:

@Html.EditorFor(model => model.surName,new { htmlAttributes = new { @class = "form-control" } })

如何绑定Kendo文本框?

@(Html.Kendo().TextBox()
    .Name("fName") 
    .HtmlAttributes(new { placeholder = "First Name",required = "required",validationmessage="Enter First Name" })
)

解决方法

使用Kendo().TextBoxFor方法
@(Html.Kendo().TextBoxFor(model => model.surName)
    .Name("fName")
    .HtmlAttributes(new { placeholder = "First Name",validationmessage="Enter First Name" })
)

猜你在找的C#相关文章