我在我的项目中使用了Kendo UI MVC4。 View中的ProductItem.cshtml是:
<form class="k-content" id="ticketsForm">
<ul class="edit-form">
<li>
<label for="Name" class="required">Name:</label>
@Html.TextBox("Name", ViewData["Name"] ?? string.Empty)
</li>
<li>
<label for="Price">Price:</label> @Html.TextBox("Price", ViewData["Price"] ?? string.Empty)
</li>
<li>
<label for="Quantity">Quantity:</label> @Html.TextBox("Quantity", ViewData["Quantity"] ?? string.Empty)
</li>
<li>
<label for="ExpiredDate">ExpiredDate:</label>
@(Html.Kendo().DatePicker()
.Name("ExpiredDate")
.Value("08/06/2015")
.HtmlAttributes(new { style = "width:150px" })
)
</li>
</ul>
</form>
我想验证文本框,但我不知道如何。有人可以帮助我。
谢谢