【问题标题】:Kendo dropdown is not working in IE8剑道下拉菜单在 IE8 中不起作用
【发布时间】:2014-02-11 06:30:01
【问题描述】:

我已经使用下面的代码来绑定剑道下拉列表。

 <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 中不起作用。请帮帮我.. 我怎样才能使它工作..

【问题讨论】:

    标签: jquery asp.net internet-explorer-8 kendo-ui kendo-dropdown


    【解决方案1】:

    尝试将 dataType 设置为 json。否则某些浏览器可能无法解析 JSON 响应。

    旧:

    transport: {
        read: "/DesktopModules/MyServices/API/Test"
    }
    

    新:

    transport: {
        read: {
           url: "/DesktopModules/MyServices/API/Test",
           dataType: "json"
        }
    }
    

    【讨论】:

      猜你喜欢
      • 2013-09-05
      • 1970-01-01
      • 2013-01-08
      • 2013-04-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-11-17
      相关资源
      最近更新 更多