Request for cell level formatting

Issue #786 resolved
Cindy created an issue

Currently I only see options for row and column formatting, I have use cases where being able to specify formatting for a row/column intersection would be very useful.

Comments (3)

  1. Cindy reporter

    I’ve thought about this more and might be able to use conditional column formatting based on row dimension element, but the cell formatting would certainly make this easier

  2. tomer ganz

    In order to do so, you will need to create a custom CSS class that contains 2 parts like in the example below.

    Then apply the 1st part of the class on the column you like to format ( columntest) , then apply the 2nd part of the class on the row element t (rowtest).

    handsontable td.columntest td.rowtest  {

    background-color: #bee1f4 !important;

    }

  3. Log in to comment