Avatar

Level 10

Hi there,

 

It is important to know how is your data stored? How do you request your data to populate your drop down lists?

 

If you populate based on embed form data, it is possible to populate a dropdown list on the exit event of the other, but in my experience I'd rather populate them within their own initialize event, and say as soon as I'd exit the previous drop down, I would execute the following drop down's initialize event like this:

Dropdown1.execInitialize();

 

When doing so it's important to take note that any selected value within the following drop down, may be altered if the previous selected value has been changed.

 

Let us know how you proceed gathering the lists items.