Forum Moderators: open
for example,
drop down menu 1
select work type from (from mysql table 'works' )
which would restrict options in
drop down menu 2 ('year') and menu 3 ('country') to records matching that criteria
drop down menu 2
select year (from mysql table 'works') which working with menu 1 criteria restricts options in menu 3
drop down menu 3 ('country')
select 'country' (from mysql table 'works')
i want this to work in any order, so i could select menu 3 (country) first for example, then 1 (worktype) , which would restrict the options in menu 2 (year) and so on.
would such a solution be possible for more menus which query different tables?
User select drop-down 1 (5th element), then drop-down 2 (3rd element), then drop-down 3 (2nd element). This is all well and good.... but what do you do if the user then changes the selection in drop-down 2 to the 8 th element (this may effect the previous selections in the other drop-downs), do you default the drop-down 1 and drop-down 3 back to the first element? if you do will the user know this?
I guess I'm trying to say that it could be messy and not user friendly. Keep things as simple as possible for the user and they data you collect from them will be more accurate.