Dropdown based on another dropdown

1
  In the below application, How can we restrict the dropdown only with the value “18M” when we select “South Africa”. Means I want only “18M” If I select “South Africa”  
asked
1 answers
0

The standard search fields can me made dependent on eachother.

So if this function is needed you’ll need to implement the search manually, meaning you’ll have to model the search functionality yourself. This means creating search entity that allows for the needed selections, implement the dependencies and the actual search. Link the search result to the search entity and display these in a data grid that is nested in the dataview of the search entity.

A bit of work but not to difficult to create.

answered