Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqGrid 具有setGridHeight仅设置网格单元格高度的方法。 我需要的是在调整浏览器大小时设置整个事物(包括寻呼机)的高度。
setGridHeight
有办法吗?
我们可以通过以下技巧做到这一点:
function setJqGridFullHeight(gridSelector,newHeight){ $grid = $(gridSelector) ; $grid.setGridHeight( newHeight ) ; $grid.setGridHeight( 2*newHeight - $grid.closest('.ui-jqgrid').height() ) ; }