I have an adf table with 30 rows with the below properties :
scrollPolicy="page", rowSelection="multiple", editingMode="clickToEdit", fetchSize="5".
VO tuning parameters are as follows :
"All rows" in batches of "10", "As needed". AccessMode is set to "Scrollable" with Range size "10".
Steps to replicate issue :
Select a row (row becomes editable because of the editingMode property)
Sort by column (i.e. deptNumber)
Paginate to the next page, observe that the selected row from the first page shows at the top(first row of the 2nd page).
NOTE : his issue does not appear in the below cases :
If VO's tuning parameter has AccessMode set to "RANGE_PAGING".
If VO's tuning parameter has "All at once" instead of "As needed".
Ask : Need to find out how the selected row is getting set at the first position of the next page.