但有一个最大高度和滚动条

但有一个最大高度和滚动条

本文介绍了具有自动高度的 jqGrid;但有一个最大高度和滚动条的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法让jqGrid自动调整它的高度到行数;但是当达到一定高度时,它的高度不能再增加并且出现垂直滚动条?

谢谢D

解决方案

我建议你在 的 jqGrid 并使用 height:'100%'高度:'auto':

$("#list").parents('div.ui-jqgrid-bdiv').css("max-height","300px");

"max-height" 属性将为 IE6 不使用,但更新的网络浏览器会使用它.

更新: 免费 jqGrid 在 4.10.0 版本中引入了新属性:maxHeight,其作用与上述完全相同.因此,可以只使用 maxHeight: 300 而不是手动设置父 div.ui-jqgrid-bdivmax-height..p>

Is there any way to get jqGrid to adjust its height automatically to the number of rows; but when a certain height is reached that its height cannot increase anymore and that the vertical scrollbar apprears?

ThanksD

解决方案

I would recommend you to set "max-height" property on the bdiv of jqGrid and use height:'100%' or height:'auto':

$("#list").parents('div.ui-jqgrid-bdiv').css("max-height","300px");

The "max-height" property will be not used by IE6, but more recent web browsers will use it.

UPDATED: Free jqGrid introduce in version 4.10.0 new property: maxHeight which do exactly the same as above. Thus one can just use maxHeight: 300 instead of manual setting of max-height of the parent div.ui-jqgrid-bdiv.

这篇关于具有自动高度的 jqGrid;但有一个最大高度和滚动条的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 09:38