gpt4 book ai didi

jquery - 使用 JQuery 将第二个工具栏添加到 JQGrid

转载 作者:行者123 更新时间:2023-12-01 03:51:12 27 4
gpt4 key购买 nike

有没有办法从 JQueryUI 添加第二个工具栏到现有的 JQGrid。

最佳答案

您可以使用 jqGrid 的 toolbar: [true, "bottom"] 选项在网格底部添加附加工具栏。网格的 id 将由 't_' 前缀和网格 id 构建。您可以手动将任何信息添加到网格中。例如以下代码添加简单的 jQuery UI Button :

$('<div><span id="myToolbar" style="float: right;"></span></div>').appendTo("#t_" + $grid[0].id);
$('<button>', {title: 'Click me!'}).css({
float: "right",
height: "21px",
width: "20px"
}).appendTo("#myToolbar").button({
icons: {
primary: "ui-icon-gear"
},
text: false
}).click(function (e) {
alert('My button was clicked');
});

您可以在 the demo 上看到结果:

enter image description here(我将光标放在按钮上以显示工具提示“单击我!”)

关于jquery - 使用 JQuery 将第二个工具栏添加到 JQGrid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8441122/

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