Adding a link to a drop-down button

thanks for letting me write. I want to do is to link to a drop-down button a page for each name or title, the question is if I can do it, and how do I do it. Thanks in advance

Hola Andres,

this is what I would try:

  1. setup a collection with Labels for the DropDown and a URL, like
    Contabilidad privada | /contabilidadprivada
  2. drag this Dataset into the page
  3. query the collection and put the URL fields into an array
  4. make the dropdown data bound to the first label
  5. on the Onclick event, get the SelectedIndex
  6. with this Index, get the corresponding URL from the array (both 0-based)
  7. use wixLOcation.to() to navigate to the page

2 and 3 could also be replaced with a separate query on that collection to retrieve that row.

Hello, Giri Zano
Please, you can explain with example code?