0
我已經使用下面的代碼來綁定kendo dropdownlist。Kendo dropdown在IE8中不工作
<input type="text" id="ddlCurrency" class="k-dropdown" name="currency" tabindex="3"
style="width: 80px;" />
var ddlCurrency = $("#ddlCurrency").kendoDropDownList({
//optionLabel: "Select Area",
dataTextField: "Name",
dataValueField: "Id",
//filter: "contains",
dataSource: {
serverFiltering: true,
transport: {
read: "/DesktopModules/MyServices/API/Test"
}
}
}).data("kendoDropDownList");
這個代碼是不是在IE 8的工作請幫助我..我怎樣才能使這個工作..