Please explore following workaround
Please add a virtual column called say Record Number with an app formula something like
CEILING(([_ROWNUMBER]-1)/10.0) if you wish the pagination by 10 records or
CEILING(([_ROWNUMBER]-1)/100.00) if you wish the pagination by 100 records and so on.
In the table view of the table, in the group by setting, please include Group by column as [Record Number] folowed by second group by column as [_ROWNumber]
You will get a grouping or we may say vertical pagination something like below
1 will have records from 1-10 or 1-100 and so on.