制表符以编程方式更新列位置?

时间:2019-01-25 09:55:06

标签: tabulator

是否可以使用Tabulator更新列位置? 还是有办法做到? 显然没有任何功能。

1 个答案:

答案 0 :(得分:0)

moveColumn函数将在下周的4.2版本中发布。

同时,您可以通过调用 deleteColumn 函数,然后调用 addColumn 轻松更改表中列的顺序。 > 功能。

//remove column
table.deleteColumn("age");

//add column elsewhere in the table after the name column
table.addColumn({title:"Age", field:"age"}, "name");

或通过更改列定义数组并使用 setColumns 函数重新提交

//define new column layout
var columns = [
    {title:"Name", field:"name"},
    {title:"Age", field:"age"},
    {title:"Gender", field:"gender"},
]

//replace all columns
table.setColumns(columns);

有关这些功能的完整文档,请参见Columns Documentation