3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HandsontableのfixedColumnsLeftによる不具合の対処法

Last updated at Posted at 2018-06-30

Handsontable for Reactで開発していて遭遇した躓きポイントと対処法を書きます。

固定カラムと非固定カラムとの間がズレる

以下のようにrowHeadersを設定せずにfixedColumnsLeftをセットすると、固定カラムと非固定カラムとの間がズレます。

<HotTable
    data={data}
    fixedColumnsLeft={2}
/>
スクリーンショット 2018-06-30 23.58.19.png (1、2行目が固定カラム、3、4行目が非固定カラム)

対処法

「autoRowSize: true」をセットします。

<HotTable
    data={data}
    fixedColumnsLeft={2}
    autoRowSize
/>
スクリーンショット 2018-07-01 0.15.09.png スッキリ!

参考

Handsontableは日本語の情報が少ないので対処法を探すのに苦労しました。
https://github.com/handsontable/handsontable/issues/4202

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?