Automotive Example
The documentation refers to an automotive example. I am in fact working on a real world automotive menu and need some advice.
This will ultimately be a part search by year, make, and finally model. For now, I have three tables populated with data. They are as follows:
Year
wich contains one column, YearID. The YearID is actually the year (ie, 1996, 1999, etc.)
Table two is BaseVehicle. The columns in it are:
BaseVehicleID
YearID
MakeID
ModelID
Table three is Make. It contains:
MakeID
MakeName
What I need to be able to do is select the year from the YearID table / list and then filter the results in the Make list, so that the user can continue to narrow their criteria. Where this becomes confusing to me is how exactly to configure the drop downs knowing that the second, "BaseVehicleID" contains the relational keys between the other two tables.