I am currently working on a project that will utilize MVC5, angularJS, and bootstrap for development.
One of the key features in my project is a dropdown menu called "expense type". Upon selecting a value from this dropdown, additional controls need to be dynamically loaded into my view.
Some of these controls are determined by the selected value in the expense type dropdown, while others are already predefined. When a user selects a value, my controller needs to query the database to retrieve the data required for displaying the dynamic controls in the view. The challenge I face is how to properly render this data using angularJS. The number and types of controls depend entirely on the value selected in the dropdown, with both control types and values being sourced from the database.
I would greatly appreciate any suggestions on how best to proceed with this implementation.