Reputation: 374
I have 6 select lists on a page, and data is being pulled in each select list using a SQL Query. Is there any way that selecting data in any select list will refresh data in all other select lists, irrespective of the order in which data is selected?
Upvotes: 0
Views: 199
Reputation: 142705
If those select lists depend on each other - and yes, they do, as changing one of them reflects others - then use
properties to do that.
If items depend on each other, but not in strict parent-child relationship, then
in their queries use WHERE
clauses which will make result of each query dependent on other items' values, e.g.
where (continent = :P1_CONTINENT or :P1_CONTINENT is null)
and (country = :P1_COUNTRY or :P1_COUNTRY is null)
set their page action on selection property to "Redirect and set value" so that other items' values are refreshed once you modify this item's value
Upvotes: 1