如果内容垂直溢出,如何使JQgrid td高度固定?

时间:2013-12-18 08:54:59

标签: javascript jquery jqgrid

我使用以下代码:

loadComplete: function (data) {
  $('.ui-jqgrid tr.jqgrow td').each(function () {
  var htmlString = $(this).html();
  htmlString = '<div class=\'divJqgridMaxHeight\'>' + htmlString+ '</div>';            
  $(this).html(htmlString);
});

这解决了问题,但仅针对只读网格,对于可编辑网格,这会导致问题。

1 个答案:

答案 0 :(得分:0)

也许您可以尝试在ui.jqgrid.css中更改以下css类:

.ui-jqgrid tr.jqgrow td {
 /*some css*/
 max-height: 20px;
}

只需将高度更改为最大高度。

希望这会有所帮助。