Hi,
I would like to ask how can I resize only one row when I click on a cell of the row where the text is not totally shown. So click on cell, it will resize only this row to the contents of the clicked cell.
Thank you
Hi,
I would like to ask how can I resize only one row when I click on a cell of the row where the text is not totally shown. So click on cell, it will resize only this row to the contents of the clicked cell.
Thank you
Using the
onItemClick:function(id, e, trg){
this.adjustRowHeight(id.column, true);
}
all the rows are resized
There’s no built-in solution, but you can implement some custom calculations. Here’s the sample of what can be done:
Thank you