はしくれSEめも

SEに必要情報をめも程度に残していこうと思っています。

【Handsontable】currentRowClassName カレント行のスタイル設定

f:id:coogi-se:20200303144312p:plain

Handsontable(ハンズオンテーブル)のカレント行(選択行)のスタイルを変更する方法を紹介します。

カレント行(選択行)のスタイルを変更するには、
currentRowClassNameというオプションを使用します。

currentRowClassNameとは

現在選択されているすべての表示行のクラス名。

JavaScriptサンプル

$(function(){

  var data = [
    ["", "Ford", "Tesla", "Toyota", "Honda"],
    ["2017", 10, 11, 12, 13],
    ["2018", 20, 11, 14, 13],
    ["2019", 30, 15, 12, 13]
  ];

  var container = document.getElementById('handsonTable');

  var hot = new Handsontable(container, {
    data: data,

    currentRowClassName: 'currentRow',
  });

});

CSSサンプル

.currentRow {
    border-color: rgb(75, 137, 255) !important;
}

関連記事

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com

coogi-memo.hatenablog.com