gpt4 book ai didi

javascript - 将自定义按钮添加到 jqGrid ColumnChooser 对话框中

转载 作者:行者123 更新时间:2023-12-02 15:17:15 26 4
gpt4 key购买 nike

我想将自定义按钮添加到“列选择器”对话框中,并使其表现得像其他按钮一样。我尝试得到类似 this(Default button) 的东西

  _this.table.jqGrid("navButtonAdd", _this.pid, {
caption: "",
buttonicon: "icon",
title: "Title",
onClickButton: function() {
return self.table.jqGrid("columnChooser", {
done: function(perm) {
if (perm) {
self.table.jqGrid("remapColumns", perm, true);
return $(window).triggerHandler("resize.jqGrid");
}
},
dialog_opts: {
modal: true,
resizable: false
},
msel_opts: {
dividerLocation: 0.5
},
width: 460
});

}
});

最佳答案

您可以通过以下方式执行此操作:

onClickButton: function () {
$(this).jqGrid("columnChooser", {
dialog_opts: {
buttons: {
Default: function () {
alert("Default button is clicked!");
}
}
}
});
}

The corresponding demo显示以下结果:

enter image description here

关于javascript - 将自定义按钮添加到 jqGrid ColumnChooser 对话框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34351801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com