我从 javascript 文件中读取值。我试图将特定字段绑定到剑道下拉列表中。我能够读取这些值,但我无法在剑道下拉列表中分配它们。
var json = [
{
"Type": "ABC",
"Icon": "Ro.png"
}
},
{
"Type": "DEF",
"Icon": "Po.png",
}
}];
HTML:
<select id="ListCurrencyDiv" class="testdiv"> </select>
功能:
function BindValue() {
$(".testdiv").kendoDropDownList({
dataSource: {
transport: {
read: function (BindValue) {
operation.success(json);
}
}
},
dataTextField: "Type",
dataValueField: "Type",
value: "No notification"
});}BindValue();