@@ -89,7 +89,7 @@ public function buildForm(array $form, FormStateInterface $form_state, $nojs = N
89
89
// select elements), but valid values include any jQuery event,
90
90
// most notably 'mousedown', 'blur', and 'submit'.
91
91
'callback ' => '::instrumentDropdownCallback ' ,
92
- 'wrapper ' => 'instrument-fieldset ' ,
92
+ 'wrapper ' => 'instrument-fieldset-container ' ,
93
93
],
94
94
];
95
95
// Since we don't know if the user has js or not, we always need to output
@@ -111,25 +111,27 @@ public function buildForm(array $form, FormStateInterface $form_state, $nojs = N
111
111
unset($ form ['instrument_family_fieldset ' ]['choose_family ' ]['#attributes ' ]);
112
112
}
113
113
114
+ // Since we're managing state for this whole fieldset (both the dropdown
115
+ // and enabling the Submit button), we want to replace the whole thing
116
+ // on AJAX requests. That's why we put it in this container.
117
+ $ form ['instrument_fieldset_container ' ] = [
118
+ '#type ' => 'container ' ,
119
+ '#attributes ' => ['id ' => 'instrument-fieldset-container ' ],
120
+ ];
114
121
// Build the instrument field set.
115
- $ form ['instrument_fieldset ' ] = [
122
+ $ form ['instrument_fieldset_container ' ][ ' instrument_fieldset ' ] = [
116
123
'#type ' => 'fieldset ' ,
117
124
'#title ' => $ this ->t ('Choose an instrument ' ),
118
- // Since we're managing state for this whole fieldset (both the dropdown
119
- // and enabling the Submit button), we want to replace the whole thing
120
- // on AJAX requests.
121
- '#prefix ' => '<div id="instrument-fieldset"> ' ,
122
- '#suffix ' => '</div> ' ,
123
125
];
124
- $ form ['instrument_fieldset ' ]['instrument_dropdown ' ] = [
126
+ $ form ['instrument_fieldset_container ' ][ ' instrument_fieldset ' ]['instrument_dropdown ' ] = [
125
127
'#type ' => 'select ' ,
126
128
'#title ' => $ instrument_family_options [$ selected_family ] . ' ' . $ this ->t ('Instruments ' ),
127
129
// When the form is rebuilt during ajax processing, the $selected_family
128
130
// variable will now have the new value and so the options will change.
129
131
'#options ' => static ::getSecondDropdownOptions ($ selected_family ),
130
132
'#default_value ' => !empty ($ form_state ->getValue ('instrument_dropdown ' )) ? $ form_state ->getValue ('instrument_dropdown ' ) : '' ,
131
133
];
132
- $ form ['instrument_fieldset ' ]['submit ' ] = [
134
+ $ form ['instrument_fieldset_container ' ][ ' instrument_fieldset ' ]['submit ' ] = [
133
135
'#type ' => 'submit ' ,
134
136
'#value ' => $ this ->t ('Submit ' ),
135
137
];
@@ -138,13 +140,14 @@ public function buildForm(array $form, FormStateInterface $form_state, $nojs = N
138
140
// JavaScript running, #state won't work either. We have to set up the state
139
141
// of the instrument fieldset here, based on the selected instrument family.
140
142
if ($ selected_family == 'none ' ) {
141
- $ form ['instrument_fieldset ' ]['instrument_dropdown ' ]['#title ' ] = $ this ->t ('You must choose an instrument family. ' );
142
- $ form ['instrument_fieldset ' ]['instrument_dropdown ' ]['#disabled ' ] = TRUE ;
143
- $ form ['instrument_fieldset ' ]['submit ' ]['#disabled ' ] = TRUE ;
143
+ $ form ['instrument_fieldset_container ' ]['instrument_fieldset ' ]['instrument_dropdown ' ]['#title ' ] =
144
+ $ this ->t ('You must choose an instrument family. ' );
145
+ $ form ['instrument_fieldset_container ' ]['instrument_fieldset ' ]['instrument_dropdown ' ]['#disabled ' ] = TRUE ;
146
+ $ form ['instrument_fieldset_container ' ]['instrument_fieldset ' ]['submit ' ]['#disabled ' ] = TRUE ;
144
147
}
145
148
else {
146
- $ form ['instrument_fieldset ' ]['instrument_dropdown ' ]['#disabled ' ] = FALSE ;
147
- $ form ['instrument_fieldset ' ]['submit ' ]['#disabled ' ] = FALSE ;
149
+ $ form ['instrument_fieldset_container ' ][ ' instrument_fieldset ' ]['instrument_dropdown ' ]['#disabled ' ] = FALSE ;
150
+ $ form ['instrument_fieldset_container ' ][ ' instrument_fieldset ' ]['submit ' ]['#disabled ' ] = FALSE ;
148
151
}
149
152
150
153
return $ form ;
@@ -186,7 +189,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
186
189
* instrument-dropdown-replace form element.
187
190
*/
188
191
public function instrumentDropdownCallback (array $ form , FormStateInterface $ form_state ) {
189
- return $ form ['instrument_fieldset ' ];
192
+ return $ form ['instrument_fieldset_container ' ];
190
193
}
191
194
192
195
/**
0 commit comments