0

我需要更改滚动条在handsontable 中的显示方式。谁知道如何做到这一点?

function WalkontableScroll(instance) {
this.instance = instance;
this.wtScrollbarV = new WalkontableScrollbar(instance, 'vertical');
`enter code here`this.wtScrollbarH = new WalkontableScrollbar(instance, 'horizontal');
}
4

1 回答 1

-1

如果你想要滚动条,只需overflow: scroll在 CSS 中设置容器宽度、高度。

$example1.handsontable({
  data: createBigData(),
  colWidths: [55, 80, 80, 80, 80, 80, 80], //can also be a number or a function
  rowHeaders: true,
  colHeaders: true,
  minSpareRows: 1,
  stretchH: 'all',
  contextMenu: true,
  width: 100,
  height: 100
});

请参阅此处了解更多详细信息

于 2013-07-18T10:02:15.443 回答