Limiting row height

Hello
I have rows with cells that have a lot of content and I want the height of the row limited.
I tried using rowHeights but it had no effect.
Is there a way to hide some of the text?
thank you
Tal

Hi @taln
Currently you cannot limit a cell to cut the content. What you could do is to wrap the content into DIV element and set a height for it, like here: Handsontable example - JSFiddle - Code Playground That way the text is cut but if you double click a cell to edit it it will show the full content or with overflow: auto to show vertical scroll: Handsontable example - JSFiddle - Code Playground

The problem is that it shows the HTML part as well

If you do not want the HTML elements to appear you could try to create a custom renderer that will append a DIV and give it styles inside the code but… I didn’t test it. However would be happy to help if you would like to check how does it work.

thank you!

You’re welcome.