Excuse my lack of html knowledge, but is it possible to set up a set of say 3 radio buttons so that each one links to a different select list of items?
What I'm trying to do is let the user select either:
Projects select list of all the projects,
Tasks select list of all the tasks,
Users select list of all the users
As far as I have been able to figure from radio buttons so far, they just display text and have a submit value as an input. Is what I'm thinking of infeasible?
I'm kind of hoping there is some plain easy way to link the radio button to each select list, but I can in the worst case imagine just having the appropriate select list place its value into the radio button's value field via a javascript method. That just seems unnecessarily complicated though for what seems like such a simple idea.