Handsontable example

HTML

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.css" /> 
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/languages.min.js"></script>
<script src="https://handsontable.com/docs/scripts/fixer.js"></script>

<div id="example1" class="hot "></div>

SCSS

/* .mycurrentRowClassName:not(.highlight):not(.current) {
  background-color: lightblue;
  color: black;
} */




.handsontable:has(.ht_clone_inline_start .ht__active_highlight) {
  .handsontable .mycurrentRowClassName {
    background-color: lightblue;
    color: black;
  }
}

Babel + JSX

import Handsontable from 'handsontable';
import 'handsontable/dist/handsontable.full.min.css';


const container = document.querySelector('#example1');

new Handsontable(container, {
  data: [
    { car: 'Mercedes A 160', year: 2017, price_usd: 7000, price_eur: 7000 },
    { car: 'Citroen C4 Coupe', year: 2018, price_usd: 8330, price_eur: 8330 },
    { car: 'Audi A4 Avant', year: 2019, price_usd: 33900, price_eur: 33900 },
    { car: 'Opel Astra', year: 2020, price_usd: 5000, price_eur: 5000 },
    { car: 'BMW 320i Coupe', year: 2021, price_usd: 30500, price_eur: 30500 },
  ],
  colHeaders: ['Car', 'Year', 'Price ($)', 'Price (€)'],
  rowHeaders: true,
  licenseKey: 'non-commercial-and-evaluation',
  currentRowClassName: 'mycurrentRowClassName',
  autoWrapRow: true,
  autoWrapCol: true,

});