Angular 4 Dynamic Forms: Dependent Dropdown
问题 I am creating a dynamic form based on Angular 4 Dynamic Forms . Everything is working out great! However, I have run into an issue with the dropdown. I would like to have a dependent dropdown. When the user selects a value in the dropdown it will display checkboxes, based on an attribute - possibly name . service new DropdownInput({ key: 'dropdown', label: 'Dropdown Testing', options: [ {key: 'example1', value: 'Example 1'}, {key: 'example2', value: 'Example 2'} ], order: 1 }), new