When populating a dropdown list with all the values in a specific column in a database, the dropdown only includes the unique values from the database. Normally, that's what you want. However, I have a case in which I'd like the dropdown list to include all values, including duplicates, from the database.
The dropdown list that has duplicates is being hidden, so users won't even know it exists. I'm using the values in that dropdown as tooltips for the options in a second dropdown list. The only problem I'm having is that there are about a dozen rows in the database that have identical values. And changing those rows is not possible.
So, I'm hoping there's some kind of class or attribute I can set on the select field that will allow duplicate options to be created during the lookup.
Or if you have a better way of adding tooltips to select options from a database, I'd be willing to try it.
Thanks!