Add button to jqgrid column header(将按钮添加到 jqgrid 列标题)
问题描述
有没有办法在列标题旁边添加一个按钮?让我们说在排序指标"之后?
Is there a way to add a button just next to column header? lets say just after the 'Sort indicators' ?
举个例子
提前致谢.
推荐答案
我想你知道你可以在列标题中包含 HTML 标记.应该只在 colNames
中放置 HTML 片段而不是文本.我想您想在所有列标题中添加 一些带有图标的按钮,并在单击该按钮时执行一些自定义操作.
I suppose that you knows that you can include HTML markup in the column headers. One should just place HTML fragment instead of the text in the colNames
. I suppose that you want to add in all column headers some button with an icon and do some custom actions if the button are clicked.
您可以通过多种方式实现该要求.在 演示中,我只展示了许多可能的实现中的一种:
You can implement the requirement in many ways. In the demo I show just one from many possible implementation:
单击自定义按钮时,将显示一个警报,其中显示单击标题的列的名称.
on clicking on the custom button an alert will be displayed which shows the name of the column which header was clicked.
对应的代码是
var $grid = $("#list");
//... here the grid will be created
$grid.closest("div.ui-jqgrid-view").find("div.ui-jqgrid-hdiv table.ui-jqgrid-htable tr.ui-jqgrid-labels > th.ui-th-column > div.ui-jqgrid-sortable")
.each(function () {
$('<button>').css({float: "right", height: "17px"}).appendTo(this).button({
icons: { primary: "ui-icon-gear" },
text: false
}).click(function (e) {
var idPrefix = "jqgh_" + $grid[0].id + "_",
thId = $(e.target).closest('div.ui-jqgrid-sortable')[0].id;
// thId will be like "jqgh_list_name"
if (thId.substr(0, idPrefix.length) === idPrefix) {
alert('Clicked the button in the column "' + thId.substr(idPrefix.length) + '"');
return false;
}
});
});
这篇关于将按钮添加到 jqgrid 列标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将按钮添加到 jqgrid 列标题
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01