I’m working on a process configuration module where I need to create multiple modifiers dynamically. Each modifier consists of three dependent dropdowns: Type: Includes options such as Service Type, Transaction Type, Property Type, Loan Amount, etc. Each type is linked to a corresponding data type (String or Integer). Condition: Populated based on the selected Type. If Type is String, the conditions are is and is not. If Type is Integer, the conditions are less than and greater than. Value: Options dynamically populated based on the selected Type, such as: Service Type → Title & Escrow, Appraisal Transaction Type → Purchase, Refinance, Life Event By State → TX, VA, FL, CA, etc. Loan Amount → Integer range or direct input. Process and Modifiers Relationship: Multiple modifiers can be added to a Process using a one-to-many association. Each Modifier is linked to the Process and holds associations with TypeOption, ConditionOption, and ValueOption. Challenges I’m Facing: Dynamically populating Condition and Value based on the selected Type.