Creating a Table with dropdown list option

@alexandersmith3
This here is the only way i know, how to do it…

https://russian-dima.wixsite.com/meinewebsite/dynamic-list

$w.onReady(function () {
    $w('#ICON1a').onClick(async(event) => {$w('#STRIP2').expand(), $w('#ICON1a').hide(), $w('#ICON1b').show()})
    $w('#ICON2a').onClick(async(event) => {$w('#STRIP4').expand(), $w('#ICON2a').hide(), $w('#ICON2b').show()})
    $w('#ICON3a').onClick(async(event) => {$w('#STRIP6').expand(), $w('#ICON3a').hide(), $w('#ICON3b').show()})
})