Hi @tony-brunsman I found the above code which should work for me also but it is not … Could you please take a look? I have a page with two repeaters: one that shows the first collection item, and another that should show the rest of the items (so from the 2nd onwards). I added the above code like below …but the outcome is empty …
$w . onReady ( function () {
$w ( “#repeaterNac” ). onItemReady (( $item , itemData , index ) => {
if ( index < 1) {
$item ( “#containerNac” ). collapse ();
}
})
});
This is the outcome → https://mcvalenzuela3.editorx.io/newsfly23/nacional
Thanks in advance!