Is it possible to show the dynamic list page on the left side and the dynamic item page on the right side (hence people don’t need to click “back” every time they finish reading)? Thank you for your help.
Just put 2 repeaters, and first one is the list of items, second one shows only one. Then code it so that when you press button at the left one, it gets the selected item, and then put the info on the second repeater.
Get current item:
export async function selectButton_click (event)
{
let $item = $w.at(event.context);
let itemData = $item("#dataset1").getCurrentItem();
}
Put item data to repeater:
$w("#rightRepeater").data = itemData;
It’s something like this.
-A