Jqgrid rowlist 选择框

发布于 2024-12-07 07:55:51 字数 363 浏览 0 评论 0原文

我的 jqgrid 里面有一个寻呼机,在寻呼机上我有 rowList 选项,人们可以选择是否想要一次显示 10/20 或更多行。问题是选择框没有被完全查看。

示例: http://imageshack.us/photo/my-images/849 /unledevx.png/

在此处输入图像描述

有什么方法可以完整地显示它吗?我试图找到该项目的 CSS 选项,但找不到。

I have a pager inside of my jqgrid, on the pager i have rowList option, where people can choose if they want to have 10/20 or more rows showed up at one time. The problem is that selection box is not viewed fully.

example : http://imageshack.us/photo/my-images/849/unledevx.png/

enter image description here

Are there any way to show it completely? I have tryed to find CSS options for this item, but couldnt find it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡笑忘祈一世凡恋 2024-12-14 07:55:51

第 58 行的 CSS 设置ui.jqgrid.css 的 >

.ui-jqgrid .ui-pg-selbox {
    font-size:.8em;
    line-height:18px;
    display:block;
    height:18px;
    margin: 0em;
}

负责字体大小。人们还发现另一个问题是非常宽的寻呼机输入字段(ui-pg-input)。

原因可能如下:

无论如何,你都有 CSS 问题。您可以使用 IE 开发工具(按 F12 启动)来检查样式。

The CSS setting from the line 58 of the ui.jqgrid.css

.ui-jqgrid .ui-pg-selbox {
    font-size:.8em;
    line-height:18px;
    display:block;
    height:18px;
    margin: 0em;
}

is responsible for the font size. One sees another problem with very wide pager input field (ui-pg-input).

The reason can be the following:

  • no or wrong <!DOCTYPE html ...> at the beginning of HTML file (see here)
  • add input.ui-pg-input { width: auto; } to fix the pager input field. See this post additionally if you use ASP.NET MVC.
  • the usage of "compatibility view" of IE (see here inclusive comments). You can solve the problem (if it exists) with adding of <meta http-equiv="X-UA-Compatible" content="IE=edge" /> in the <head> of the page.

In any way you have CSS problem. You can use IE developer tools (press F12 to start) to examine the styles.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文