Adding a link to a drop-down button

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.