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

时间:2015-06-17 05:16:34

标签: c# asp.net-mvc kendo-ui telerik kendo-asp.net-mvc

我使用了一些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" })
)

1 个答案:

答案 0 :(得分:8)

使用Kendo().TextBoxFor方法:

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