我想获取下拉值或ID。我在内联编辑kendo网格中使用下拉控件。我试图使用更改功能获取值。我的演示代码是:
function gridEdit(e)
{
griddata = $('#CodeConfiguration').data("kendoGrid");
codeType = e.container.find(":input[name=CodeType_032]");
fixedCode = e.container.find(":input[name=FixedCode]");
alert(codeType.id);
codeType.change(function()
{
if(codeType.val() == 273)
{
fixedCode.attr('disabled',true);
}
});
}
我想获取CodeType下拉列表值。请提出适当的解决方案。
答案 0 :(得分:1)
基本上,如果你的DropDownList绑定到Grid模型的字段,那么你可以直接从Model中获取值。
e.g。
function onEdit(e) {
var codetype = e.model.CodeType;
}