拉伸Webix数据表中的最后一列

时间:2014-12-23 12:24:25

标签: html css datagrid webix

如何将Webix datatable中的最后一列拉伸,使其从前一列延伸到屏幕的右边缘?我正在尝试实现下面的列布局:

enter image description here

我设置了autowidth: false,容器div的宽度为100%,但结果只是最后一列之后的空格:

enter image description here

1 个答案:

答案 0 :(得分:3)

列的fillspace属性将是解决方案。它可能具有布尔值和数值。

数据表中可以有多个填充空间;在这种情况下,宽度将根据定义的by numeric values比例计算。

columns:[
  { id:"rank", header:"Rank"},
  { id:"title", header:"Title", width:250},
  { id:"year", header:"Year"}, 
  { id:"votes", header:"Votes", fillspace:1}
]

请在代码段中查看:http://webix.com/snippet/dd113b85