如何在kendo网格中隐藏层次结构网格工具栏自定义按钮?

时间:2017-07-06 07:21:12

标签: javascript jquery kendo-grid hide toolbar

enter image description here这是我的层次结构网格工具栏。

我在工具栏中添加了新按钮,该ID为CustomButton。

我想隐藏该按钮onclick但是当ajax调用成功时。

我尝试了$(“#CustomButton”)。remove();还有$(“#CustomButton”)。hide();通过我的按钮代码不是隐藏的。

如何隐藏该按钮?

ComponentFactoryResolver

2 个答案:

答案 0 :(得分:0)

将Id属性提供给自定义按钮:

toolbar: [{ name: "create", id : "btnTest"}]

关于成功功能,请使用以下ID:

success: function (response) {
    $("#btnTest").hide();
},

答案 1 :(得分:0)

$(document).ready(function () {
     // after grid initialization
     $("#CustomButton").kendoButton().data("kendoButton");
}

在ajax调用的成功函数中使用:$("#customButton").hide();