如何在 jqgrid 标题组中居中对齐文本
我正在使用 jqgrid 4.2 的新标头分组功能,它效果很好,除了它左对齐标题组中的所有文本。
如何将标题组文本对齐到单元格的中心?
这是一个屏幕截图,向您展示默认情况下它是如何工作的:(我希望“书籍”居中对齐”)
注意:常规列标题居中对齐。
I am using the new header grouping feature of jqgrid 4.2 which works great except that it left aligns all of the text in the header groups.
How can align the header group text to be center in the cell?
Here is a screenshot to show you how it seems to be working by default: (I want "Books" to be center aligned")
NOTE: the regular column headers ARE center aligned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
标题组单元格被赋予特殊类 .ui-th-column-header。然而,这个类没有特殊的样式,如果您的项目中的任何元素已将 text-align 设置为左侧(例如在 ASP.NET MVC 中,site.css 正在执行此操作),则文本将不会居中对齐。在大多数情况下,将其添加到 CSS 中应该可以解决问题:
The header group cell is given special class .ui-th-column-header. However this class has no special styling, if anywere in your project you have set text-align to left for th elements (for example in ASP.NET MVC the site.css is doing this) the text will not be center aligned. In most situations adding this to your CSS should do the trick:
抱歉,但我无法重现该问题。 演示生成以下带有中心对齐列标题的网格:
< img src="https://i.sstatic.net/99gJc.png" alt="在此处输入图像描述">
如果您要发布演示,人们可以检查问题的根源在哪里。我猜想是其他一些 CSS 造成了问题。
Sorry, but I can't reproduce the problem. The demo produce the following grid with the center alignment column headers:
If you would post your demo one can examine where is the problem's origin. I suppose that some other CSS which you make the problem.
我有同样的问题,但我找到了解决方案。您在 html 中心标签
titleText 中给出 titleText: ' open center tag Books close center tag'
I had the same issue but i found the solution. you give titleText within the html center tag
titleText: ' open center tag Books close center tag'
我必须在 jqgrid 中的表头列中居中对齐文本,在元素检查之后,以下内容适用于我的情况:
希望它对某人有帮助。
I had to center align text in table head columns in jqgrid, after element inspection, the following worked in my case:
Hope it helps someone.
试试这个,
$('.ui-jqgrid .ui-jqgrid-htable .ui-th-div').css('text-align', 'center');
Try this,
$('.ui-jqgrid .ui-jqgrid-htable .ui-th-div').css('text-align', 'center');
然后检查元素,获取元素的 id
Inspect the element then , get the id of the element
这项工作
this work