jqGrid horizontal scrollbar at top by header(jqGrid水平滚动条在顶部由标题)
问题描述
只是好奇是否有人知道将水平滚动条添加到 jqGrid 顶部的方法(例如在标题下方或上方)?我正在使用冻结列和高度:自动但是当有很多行时,用户必须向下滚动才能水平滚动网格并且看不到标题......我做了一些搜索,看起来在大多数情况下滚动条很难弄乱,但我想我会把它放在那里.
谢谢!
我觉得你的问题很有趣.我投入了一些时间并创建了 作为创建顶部滚动条的基础.此外,如果用户在 Web 浏览器中使用缩放,我还包括了固定所有 jqGrid 潜水的大小和位置的代码部分.
我的答案代码中最重要的部分包括在下面:
var $grid = $("#list");//创建带有一些冻结列的网格$grid.jqGrid({……});var $gview = $grid.closest(".ui-jqgrid-view"),$topToolbar = $gview.find(">.ui-userdata"),$bdiv = $grid.closest(".ui-jqgrid-bdiv"),重置顶部工具栏高度 = 函数 () {var 滚动条高度 = 18;//一些测试值$topToolbar.find(">div").height(scrollbarHeight);$topToolbar.css("border-top", "0").css("height", "auto");scrollbarHeight = $topToolbar.height() - scrollbarHeight;$topToolbar.find(">div").height(scrollbarHeight);$topToolbar.height(scrollbarHeight);fixPositionsOfFrozenDivs.call($grid[0]);};//在顶部工具栏中插入空 div 并设置其宽度//与网格的宽度相同$topToolbar.css({ overflowX: "scroll", overflowY: "hidden"}).append($("<div>").width($grid.width()));//设置div的高度和工具栏的高度//基于水平滚动条的高度重置顶部工具栏高度();//检测 topbar 的滚动$topToolbar.scroll(函数 () {//同步网格的滚动条$bdiv.scrollLeft($(this).scrollLeft());});//检测网格的滚动$bdiv.scroll(函数 () {//同步toppbar的srollbar$topToolbar.scrollLeft($(this).scrollLeft());});//检测页面的缩放并调整$(window).on("resize", function () {重置顶部工具栏高度();fixPositionsOfFrozenDivs.call($grid[0]);});
我从关于冻结列的使用的旧答案中获得的代码的其他部分.
Just curious if anyone knows of a way to add a horizontal scrollbar to the top of jqGrid (like just under or above the headers)? I'm using frozen columns and height:auto but when there are lots of rows, the user has to scroll down to scroll the grid horizontally and can't see the headers... I did some searching and it looks like scrollbars are hard to mess with in most cases, but I figured I would just put it out there.
Thanks!
I find your question interesting. I invested some time and created the following demo which demonstrates how your requirements could be implemented. It displays
where one can use both horizontal scrollbars on the top or on the bottom of the grid. I used the answer as the basis of creating the top scroll bar. Additionally I included the part of code which fixed the size and position of all jqGrid dives in case if the user uses zoom in the web browser.
The most important part of the code of my answer I included below:
var $grid = $("#list");
// create the grid with some frozen columns
$grid.jqGrid({
....
});
var $gview = $grid.closest(".ui-jqgrid-view"),
$topToolbar = $gview.find(">.ui-userdata"),
$bdiv = $grid.closest(".ui-jqgrid-bdiv"),
resetTopToolbarHeight = function () {
var scrollbarHeight = 18; // some test value
$topToolbar.find(">div").height(scrollbarHeight);
$topToolbar.css("border-top", "0").css("height", "auto");
scrollbarHeight = $topToolbar.height() - scrollbarHeight;
$topToolbar.find(">div").height(scrollbarHeight);
$topToolbar.height(scrollbarHeight);
fixPositionsOfFrozenDivs.call($grid[0]);
};
// insert empty div in the top toolbar and make its width
// the same as the width of the grid
$topToolbar.css({ overflowX: "scroll", overflowY: "hidden"})
.append($("<div>").width($grid.width()));
// set the height of the div and the height of toolbar
// based on the height of the horizontal scrollbar
resetTopToolbarHeight();
// detect scrolling of topbar
$topToolbar.scroll(function () {
// synchronize the srollbar of the grid
$bdiv.scrollLeft($(this).scrollLeft());
});
// detect scrolling of the grid
$bdiv.scroll(function () {
// synchronize the srollbar of the toppbar
$topToolbar.scrollLeft($(this).scrollLeft());
});
// detect zoop of the page and adjust the
$(window).on("resize", function () {
resetTopToolbarHeight();
fixPositionsOfFrozenDivs.call($grid[0]);
});
Other parts of the code I get from my old answers about the usage of frozen columns.
这篇关于jqGrid水平滚动条在顶部由标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:jqGrid水平滚动条在顶部由标题
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01