Hi,
I'm using syncfusion ejs-grid in vuejs and have a problem with the row height. I have two frozen columns (left, right) and a usual content. So, in HTML Dom terms, I have three tables (as it is implemented by you).
However, the text inside in cells within the grid-content can be expanded and collapsed by the user. If the user expands or collapse a cell's text, then row height of the grid-content adjusts correctly, but the height of the row of the frozen tables do not adjust.
I figured out that they do if I resize the columns manually. However, I could not find out which method is used by the resizeModule to adjust the row heights. I tried
- resizeModule.updateResizeEleHeight
- resizeModule.refresh
- resizeMOdule.resizeEnd
- resizeModule.refreshHeight
- notify("freezeRender", { case: "textwrap"})
- render
- gridRender
but nothing seems to work.
grid.refresh is not working also, nor grid.refreshColumns. When using grid.refresh, then the expanded text is collapsed again.
I appreciate your help :)
Edit:
I use
grid.ej2Instances.notify("freezerender", { case: "refreshHeight" });now and it works if I expand the text inside a row, so the frozen rows are increasing their heights. But it does not reduce the height when I collapse the text....