Hi Jonathan,
Thanks for sharing the sample.
The reported problem was occurring because the Grid was not refreshed properly based on the splitter’s size when it is adjusted. Since the Grid is rendered inside the Splitter component and adjusting the splitter modifies the total height, the Grid size also needs to be refreshed based on this at that position. So you can resolve this by refreshing the Grid using its refresh method after the splitter resize(In your case onDragEnd event). This is demonstrated in the below code snippet,
|
// React splitter layout's onDragEnd event handler
splitterResize(args) {
this.gridInstance.refresh();
} |
We have modified the sample provided based on this which you can find below,
Let us know if you have any concerns.
Regards,
Sujith R