26
Views
3
Comments
Solved
Dropdown Logic
Application Type
Traditional Web, Reactive

Please help and contact me if you are willing to help, thank you.


What I want to happen is if I select an applicant No., in the dropdown, all the attributes of that database will be displayed in the same page. 


2024-05-08 06-29-37
Prince Aadil Khan Panwar
Solution

Hi Stephen Ellema,

try to put a filter into the aggregate which you are using for information and create on change action and refresh the main aggregate for it and you will be able to see the changed values.

or try to attach an OML file or Image, would like to suggest you what to do next.

hope this helps

Thanks

Prince

2025-09-21 06-51-05
Mohd Anees Mansoori

Hello stephen,

You have to create a dropdown on change logic inside which you have to refresh an aggregate say 'GetDetails'.

GetDetails will have a filter based on the ID of your selected value from dropdown and the form which is displaying the data will be binded with GetDetails aggregate output.

If you need further help you can share your oml.

Hope this will guide you on upper level.

Thanks 

Anees

2024-05-08 06-29-37
Prince Aadil Khan Panwar
Solution

Hi Stephen Ellema,

try to put a filter into the aggregate which you are using for information and create on change action and refresh the main aggregate for it and you will be able to see the changed values.

or try to attach an OML file or Image, would like to suggest you what to do next.

hope this helps

Thanks

Prince

2020-09-21 08-42-47
Vincent Koning

I would create a web block (2) that takes the Application Id as input and then retrieves the required data. The dropdown would set the var "SelectedAppliationId" so that the block will be update. 

Steps dropdown:

  1. Create dropdown with list of applications
  2. When the selection is made the var "SelectedApplicationId" is updated (this is an automatic action from the dropdown widget)
  3. The var "SelectedApplicationId" is set as input for the web block (2)

Steps webblock

  1. Create a webblock with an input parameter called "ApplicationId"
  2. Create an aggregate that will get all required data with a filter on the ApplicationId
  3. Display all data from the aggregate as you desire
  4. Add the aggregate to the OnParametersChanged action so that the data will be refreshed when a new Application is selected via the Dropdown.

Hope this helps,

Vincent

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.