Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/js/core/RowManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,11 @@ export default class RowManager extends CoreFeature{
}

this.layoutRefresh(true);

// handle resized columns
if(this.table.modExists("groupRows")) {
this.table.modules.groupRows.virtualRenderFill();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you do this inside the GroupRows module? Just making sure that we are isolating group rows related codes within its own module.

You can probably subscribe to a table-layout event from the GroupRows module and see if that works. If not, please let me know, and we can figure something out.

}
}
}else{
this.renderEmptyScroll();
Expand Down
4 changes: 3 additions & 1 deletion src/js/modules/GroupRows/Group.js
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,9 @@ export default class Group{

reinitializeHeight(){}

calcHeight(){}
calcHeight(){
this.outerHeight = this.element.offsetHeight;
}

setCellHeight(){}

Expand Down