I am creating a grid which should be multilevel (3 levels). I have some troubles with the last level, the last grid doesn't resize properly, we cannot see the entire grid.
See the fiddle: https://fiddle.sencha.com/#view/editor&fiddle/3dk9
ExtJs classic 6.2
UPDATED I found a hack to refresh the grid size by overriding the rowwidget plugin. The updated fiddle: https://fiddle.sencha.com/#view/editor&fiddle/3dkq
The added lines (bottom) are:
// HACKS: force delayed refresh size the grid in case of nested rowwidget
Ext.defer(function() { me.grid.view.refreshSize(true) }, 100);