Handsontable之隱藏列

之所以記錄官網API,是因爲本屌絲沒有vpn,官網訪問速度慢。不喜勿噴。

原官網api:https://handsontable.com/docs/7.4.2/HiddenColumns.html

插件允許隱藏某些列。通過呈現寬度設置爲0px的列來實現隱藏。
該插件不修改源數據和不參與數據轉換(返回數據的形狀
getData*方法保持不變)。

可能的插件設置:

  • copyPasteEnabled作爲Boolean(默認true
  • columns 如 Array
  • indicators作爲Boolean(默認false

const container = document.getElementById('example');
const hot = new Handsontable(container, {
  date: getData(),
  hiddenColumns: {
    copyPasteEnabled: true,
    indicators: true,
    columns: [1, 2, 5]
  }
});

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章