Hi All,
I am trying things in new Apex 20.1 and noticed this issue:
I have an IG on a page with fixed Height:
In Interactive Grid's Attributes settings, the Heading is set to "Fixed To" Region, with 900px "Fixed Report Height".
Grid has a column with a link, which opens modal dialog. See screenshot below.
When dialog closes, I refresh the grid.
I use following code to refresh grid and return user on a row that was previously edited:
var r = apex.region("customer_ir");
gSel = r.widget().interactiveGrid("getSelectedRecords");
r.refresh();
r.widget().interactiveGrid("setSelectedRecords", gSel);
I have 49 records in a gird. However after refresh I only see 46 rows. 3 rows kind of cut out by grid's height. See screenshots below.

After refresh:

Link to the application (Customers page):
https://apex.oracle.com/pls/apex/f?p=108817:2
user: guest
pass: password
Is it some known bug with Apex 20.1? How do I resolve this issue?
Thanks!