嗨,我正在尝试通过JavaScript禁用KendoDropDownList
我已经做到了,但是我的问题是当我尝试填充KendoGrid时,KendoDropDownList被禁用但值消失了。有人知道怎么修这个东西吗?还是有人知道其他方法可以做到这一点?

这是我的代码:

<script>
  $(document).ready(function () {
      var url = "@Url.Action("CheckUserStatus", "Maintenance")";
      var checkData = "CheckUser";
      $.post(url, checkData, function (d) {
          if (d != 0) {
              // alert(d);

              $("#office_id").data("kendoDropDownList").value(d);
              document.getElementById("mode-status").innerHTML = "Update Program";
              document.getElementById("button-status").innerHTML = "Update Program";
              $("#grd_ApprovedBudget").data("kendoGrid").dataSource.read();
              $("#office_id").kendoDropDownList({
                  enable: false
              });


          }
          //alert(d);

      })
  });
</script>

最佳答案

当您调用$("#office_id").kendoDropDownList时,它将尝试创建kendoDropDownList的新实例。如果要禁用现有的kendoDropDownList,则必须使用现有实例的enable函数来执行此操作:

$("#office_id").data("kendoDropDownList").enable(false);


关于启用功能的kendo documentation

10-05 20:46