I have a form application that has 3 select options. They are Venue, Event, Position. The idea is to filter down to the position for a given venue and event. The database is setup that a position (PositionID) contains a VenueID and EventID. And furthermore, an EventID contains a VenueID. So the first select (Venue) works great. The ajax is working correctly to populate the second select (Event) where VenueID = ‘{VenueID}’. However, because the Event select list needs also call an AJax on change event to filter the 3rd select (Position based on the EventID, the processing just goes into a loop. Can you not use the Ajax event on more than 1 select on a form application? Is there a better way to do this?
Thanks!