我在工具栏中添加了新按钮,该ID为CustomButton。
我想隐藏该按钮onclick但是当ajax调用成功时。
我尝试了$(“#CustomButton”)。remove();还有$(“#CustomButton”)。hide();通过我的按钮代码不是隐藏的。
如何隐藏该按钮?
ComponentFactoryResolver
答案 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();