我想用数据库中的数据填充一个Kendo下拉列表。
这就是我所说的" frwMantenimientoEmpresas.aspx / SelectProvincias"方法
我的问题是价值"未定义"拨打电话后,在下拉列表中显示...
dataSource1 = new kendo.data.DataSource({
serverFiltering: true,
transport: {
read: {
beforeSend: function (req) {
//alert("");
},
async: false,
url: "frwMantenimientoEmpresas.aspx/SelectProvincias",
type: "POST",
dataType: "json",
contentType: "application/json; charset=utf-8"
}
},
schema: {
model: {
fields: {
UIDProvincia: { type: "int" },
Nombre: { type: "string" }
}
}
}
});
$("#dropProv").kendoDropDownList({
dataSource:dataSource1,
dataTextField: "Nombre",
dataValueField: "UIDProvincia",
autoBind: true,
});
read方法正确调用服务器SelectProvincias方法..
此时dropDownList = undefined ??