如何设置制表台的最大高度?

时间:2019-09-25 07:49:26

标签: tabulator

我正在尝试使用绘制一张桌子

var table = new Tabulator("#example-table", {
          ...
          height: "75vh",
          ...}

但是,即使内容较少,看起来看起来也很丑,但高度始终为75vh。请参阅表格下方的深灰色区域。 enter image description here

我尝试使用以下内容,以使高度永远不会超过值,并且如果内容较少,则会自动调整大小。


var table = new Tabulator("#example-table", {
          ...
          height: "auto",
          maxHeight: "75vh",
          ...}

建议我进行一些修改,因为我无法获得任何文档资料。

1 个答案:

答案 0 :(得分:0)

从4.6版开始,现在提供 maxHeight 设置选项:

var table = new Tabulator("#example-table", {
    maxHeight:"100%", //do not let table get bigger than the height of its parent element
});