Pagination issue

Hello Doron,

thank you for your reply.
Following your advice I was able to get the currentPage Pagination’s property, store it in the Wix-Storage’s Session and recover it when the user returns to the repeater.
However I was not able to jump to the correct page.
I tried the following but is not working:

//jump to the correct repeater page
 let items_per_page = 6
 let repeaterData = $w("#propertiesRepeater").data
 let start_position = (currentRepeaterPageStoredInSession - 1) * items_per_page
 let end_position = start_position + items_per_page
 let slicedRepeaterData = repeaterData.slice(start_position, end_position)
    
    $w("#propertiesRepeater").data = slicedRepeaterData;
    

Any suggestion?