无法在剑道网格中绑定 DropDownList。如果它不在网格内,它工作正常。我尝试使用
@(Html.Kendo().DropDownList()
.Name("RegionId")
.OptionLabel("[|[Select...]|]")
.DataTextField("Name")
.DataValueField("Id")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("FindAll", "region")
.Data("filterRegion");
})
.ServerFiltering(true);
})
.HtmlAttributes(new { @required = "" })
.Enable(false)
.AutoBind(false)
.CascadeFrom("CountryId")
.ValuePrimitive(true).HtmlAttributes(new { @required = "" })
)
并将其绑定为文本框,而不是下拉列表。如何让它绑定下拉列表?注意:值在数据库中没有关系我只需要列并通过代码制作。
慕工程0101907
相关分类