AJAXコールバック関数が呼び出されたことがない
信じられないほど簡単なことで問題があります。multiselect-form要素の要素を選択すると、テキストフィールドが有効になります。私が抱えている問題は、Drupalが指定したコールバック関数を取得できないことです。 ここでmultiselect-elementを作成します。 $form['foocat'] = array( '#type' => 'fieldset', '#title' => t('Manage subcategories'), '#prefix' => '<div class="fieldset">', '#suffix' => '</div>', ); $form['foocat']['subcategories'] = array( '#type' => 'select', '#default_value' => '', '#title' => $foocategory, '#options' => $options, '#ajax' => array( 'callback' => 'edit_displayname_callback', 'wrapper' => 'displayname', ), '#attributes' => array('id' => 'foocats',), …