Have a server connect instance which querys records from my category table, on of the fields is the Category Name.
The Dropdown Menu has a repeat on it and its expression is the server connect query.
The Dropdown Item looks for its Text using the Category Name of the repeat.
When I test the page I only see the first record of the category table, anyone any idea whats going wrong?
Repeat region repeats the element it is applied to, repeat children repeats the child element inside the element it’s applied to.
So @bpj’s suggestion is correct. You need to repeat the child elements of the dropdown, not the dropdown itself.
Also, it’s never a good idea to have empty spaces in the server action names. Main Menu is not a good naming practice. Better use Main_Menu or main_menu or MainMenu - spaces are never a good idea.