想象一下,我在/Views/Home/Index.cshtml上的文件上有网格:
@model IEnumerable<KendoMVCWrappers.Models.StockWebAndDetailsView>
@( Html.Kendo().Grid(Model)
.Name("Grid")
@* Other columns and dataSource in here *@
columns.Bound("QuantityToEnquiry").Filterable(false).Sortable(false)
.EditorTemplateName("QuantityToEnquiry");
})
我在/Views/EditorTemplateName/QuantityToEnquiry.cshtml上有文件(我也试过 ~/Views/Shared/EditorTemplates/):
@(Html.Kendo().ComboBox()
.Name("QuantityToEnquiry")
.Value("1")
.BindTo(Enumerable.Range(1, 100).ToList())
在我的模型上:
public class StockWebAndDetailsView
{
[UIHint("QuantityToEnquiry")]
public int QuantityToEnquiry { get; set; }
}
显示的数据是null,一个值为“null”的字符串,我不知道为什么。