gpt4 book ai didi

c# - 如何将 Kendo 文本框控件绑定(bind)到它的数据?

转载 作者:太空狗 更新时间:2023-10-29 21:22:03 24 4
gpt4 key购买 nike

我使用一些 Kendo Telerik 控件设计了一个 View 。我不确定如何将他们的控件绑定(bind)到数据。

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

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

如何绑定(bind) Kendo 文本框?

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

最佳答案

使用 Kendo().TextBoxFor 方法:

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

关于c# - 如何将 Kendo 文本框控件绑定(bind)到它的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30882824/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com