I have Tabs component and I want to display a particular page on click of each tab.
Basically, I need to update the value of {{data.in_pagenumber}} on click of each tab.
How will I do it?
You can try adding a tab for each page, add a button component inside the tab & set it text property to the page number.
Add a click event for each button & in the click event handler, add a set value action that updates the value of {{data.in_pagenumber}} to the page number corresponding to the clicked button.
Just a structural idea & might need some R&D. Hope this helps,