我想要了解Kendo UI DropDownList,但我没有得到正确的价值。通过计算Kendo UI,我想从Kendo DropDownList中删除最后一项。 我试过以下但没有工作:
1
var dropDown = $("#RoleDrp").data("kendoDropDownList");
var len = dropDown.value().length+1;
var itemToRemove = dropDown.dataSource.at(len);
dropDown.dataSource.remove(itemToRemove);
dropDown.select(0);
我的长度为6,但我在DropDownList中共有13项。
2
var len = dropDown.length;
我未定义。
答案 0 :(得分:13)
嘿,请尝试使用此代码获取kendo下拉列表的长度: -
var dropDown = $("#RoleDrp").data("kendoDropDownList");
var len =dropDown.dataSource.data().length;
alert(len);
由于