Hello,
I have horizontal scrolling in my table and when I scroll to the right the row height keeps resizing, is there a way to keep the same row height for all rows?
Angular: 14.2
Handsontable: 12.1
Hello,
I have horizontal scrolling in my table and when I scroll to the right the row height keeps resizing, is there a way to keep the same row height for all rows?
Angular: 14.2
Handsontable: 12.1
Hi @kducante
Did you already added the autoRowSize: true
to your configuration object? It helps to keep the same height of the row while scrolling based on the highest cell’s height in a given row.
Thanks, this one worked for me.
Is there a way to keep the line small and when I click on a large text field it expands?
You can set up the autoRowSize: true
on the afterOnCellMouseDown
but that would rerender the table. However, every UI-change will need an extra rerender of the table. Would that meet your requirements? You can also try using a custom renderer to cut the cell and then allow users to see the whole value when they edit it.
It would be perfect.
Do you have an example using angular ?
Sure, here’s an example https://jsfiddle.net/uvsefcmh/1/ it is based on a CSS class with those properties
.handsontable .truncated {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Thanks for the quick resolution, this is a 5 star customer support.
I’m always happy to help Thank you for the kind words