Search code examples
javascripthandsontable

Format Handsontable cell text


Is it possible format only certain texts in handsontable ?

For eg. I want to make all the alphabets bold that match the string "mac".

So if there is a word "machine" in he table, the word must now be formatted as "machine"


Solution

  • You can use custom renderers, and inside the rederer function you can format the text using regEx. I think that is what you need.

    cheers