views:

23

answers:

1

Has anyone found a good method to balance option lists, such that both can modify the other? I have a list of trims, and model_numbers, and either one of these can result a one to one match.. If however, there is no one to one match, I'd like trim to narrow down model_numbers and vise-versa. I don't ever want incompatable options...

I can roll my own solution but is there anything like a jQuery framework that allows me to better customize this stuff?

+1  A: 

I dont know of any jquery framework to handle dynamically cascading select lists but From what it sounds like you have it repopulating the lists via ajax on change. With that your probably about 80% of the way there to your own solution.

John Hartsock