-
Notifications
You must be signed in to change notification settings - Fork 605
Closed
Labels
Description
Is there a way to not specify the item height? We are loading a lot of items with a different content size which essentially means different item heights.
As the ag-grid component explains here https://www.ag-grid.com/javascript-grid-row-height/?framework=vue#gsc.tab=0, You cannot use variable row height when doing virtual paging or viewport. This is because these row models need to work out the position of rows that are not loaded and hence need to assume the row height is fixed. They use getRowHeight() callback, wondering if we can use something similar here?