フォーム内の条件フィールドの最も簡単な方法


20

別のフィールドの値に基づいてフォームフィールドを有効/無効にするためのJavaScriptの魔法を取得する最も簡単な方法は何ですか?これはどこかにヘルパーがいるはずのように聞こえますが、見つけることができません。ノードに限定されないソリューションを探しています。


これが本当にDrupalの質問かどうかはわかりません。これはJavaScriptであり、Stack Overflowで確認する必要があります。
Camsoft

3
Drupalソリューションを探していました。私はそのためのJavascriptを書くことができますが、どういうわけかForm APIにプラグインする必要があるように感じます。
ファジー76

カッコいい。それは元の質問では明らかではなかったと思います。私はこれを行うことができるモジュールを知りません。
Camsoft

回答:


18

魔法は、フォーム要素で#ahah / #ajaxプロパティを使用することです。これにより、変更をトリガーするものと結果として変更するものを定義でき、さらにjQueryとシームレスに統合できます。

これは、以下の例の重要な部分です。

'#ajax' => array(
    'event' => 'change',
    'callback' => 'myajax_ajax_callback',
    'wrapper' => 'dropdown_second_replace',
),

2つのドロップダウンを持つフォームベースのページを示す例を次に示します。2番目のドロップダウンのオプションのリストは、最初のドロップダウンの選択に依存します。

<?php

/**
 * Implementation of hook_menu().
 * Registers a form-based page that you can access at "http://localhost/myajax"
 */
function myajax_menu(){
    return array(
        'myajax' => array(
            'title' => 'A page to test ajax',
            'page callback' => 'drupal_get_form',
            'page arguments' => array('myajax_page'),
            'access arguments' => array('access content'), 
        )
    );
}



/**
 * A form with a dropdown whose options are dependent on a
 * choice made in a previous dropdown.
 *
 * On changing the first dropdown, the options in the second are updated.
 */
function myajax_page($form, &$form_state) {
    // Get the list of options to populate the first dropdown.
    $options_first = myajax_first_dropdown_options();

    // If we have a value for the first dropdown from $form_state['values'] we use
    // this both as the default value for the first dropdown and also as a
    // parameter to pass to the function that retrieves the options for the
    // second dropdown.
    $value_dropdown_first = isset($form_state['values']['dropdown_first']) ? $form_state['values']['dropdown_first'] : key($options_first);

    $form['dropdown_first'] = array(
        '#type' => 'select',
        '#title' => 'First Dropdown',
        '#options' => $options_first,
        '#default_value' => $value_dropdown_first,

        // Bind an ajax callback to the change event (which is the default for the
        // select form type) of the first dropdown. It will replace the second
        // dropdown when rebuilt
        '#ajax' => array(
            // When 'event' occurs, Drupal will perform an ajax request in the
            // background. Usually the default value is sufficient (eg. change for
            // select elements), but valid values include any jQuery event,
            // most notably 'mousedown', 'blur', and 'submit'.
            'event' => 'change',
            'callback' => 'myajax_ajax_callback',
            'wrapper' => 'dropdown_second_replace',
        ),
    );
    $form['dropdown_second'] = array(
        '#type' => 'select',
        '#title' => 'Second Dropdown',
        // The entire enclosing div created here gets replaced when dropdown_first
        // is changed.
        '#prefix' => '<div id="dropdown_second_replace">',
        '#suffix' => '</div>',
        // when the form is rebuilt during ajax processing, the $value_dropdown_first variable
        // will now have the new value and so the options will change
        '#options' => myajax_second_dropdown_options($value_dropdown_first),
        '#default_value' => isset($form_state['values']['dropdown_second']) ? $form_state['values']['dropdown_second'] : '',
    );
    return $form;
}

/**
 * Selects just the second dropdown to be returned for re-rendering
 *
 * Since the controlling logic for populating the form is in the form builder
 * function, all we do here is select the element and return it to be updated.
 *
 * @return renderable array (the second dropdown)
 */
function myajax_ajax_callback($form, $form_state) {
    return $form['dropdown_second'];
}


/**
 * Helper function to populate the first dropdown. This would normally be
 * pulling data from the database.
 *
 * @return array of options
 */
function myajax_first_dropdown_options() {
    return array(
        'colors' => 'Names of colors',
        'cities' => 'Names of cities',
        'animals' => 'Names of animals',
    );
}


/**
 * Helper function to populate the second dropdown. This would normally be
 * pulling data from the database.
 *
 * @param key. This will determine which set of options is returned.
 *
 * @return array of options
 */
function myajax_second_dropdown_options($key = '') {
    $options = array(
        'colors' => array(
            'red' => 'Red',
            'green' => 'Green',
            'blue' => 'Blue'
        ),
        'cities' => array(
            'paris' => 'Paris, France',
            'tokyo' => 'Tokyo, Japan',
            'newyork' => 'New York, US'
        ),
        'animals' => array(
            'dog' => 'Dog',
            'cat' => 'Cat',
            'bird' => 'Bird'
        ),  
    );
    if (isset($options[$key])) {
        return $options[$key];
    }
    else {
        return array();
    }
}

これは、フィールドの1つの値に応じてフォームを変更する正しい方法です。ただし、フィールドを非表示/表示または有効化/無効化するには、フォーム要素の#statesプロパティの方が簡単です。
ピエールバイル

6

しない条件付きフィールドモジュールは、ちょうどそれを行いますか?

ノードを編集するとき、制御フィールドはJavaScriptで動的に表示および非表示になります。


ノードフォームとCCKフィールドの場合、はい。しかし、私は他の状況で使用できるものが欲しかった。質問を明確にします。
ファジー76

3

使用できる2つの異なるシステムがあります。

  • #ahah /#ajaxを使用すると、AJAXでフォームを送信し、サーバー側で再構築できます。実際に新しいフォーム要素を追加する場合に便利です。D6の典型的な例はupload.moduleです。すでに上記で説明しました。
  • Drupal 7の新機能は、他の要素に基づいてフォーム要素の表示/非表示/有効化/無効化などを実行できる#statesシステムです。詳細については、http://www.randyfay.com/node/58を参照してください

1

最も簡単な方法は、独自のJavaScriptを記述し、jQueryを使用してblurおよびfocusイベントにイベントハンドラーをアタッチすることです。次に、コールバックが発生したら、ロジックに基づいてフィールドを無効/有効にします。


そして、彼が彼自身のjQueryを書くことができないならば?Drupalモジュールはコーディングよりも簡単ではないでしょうか?-質問の明確化のため、コメントを撤回します。
解読

第一に、私は自分自身に条件付きフィールドモジュールを認識していませんでした。第二に、このようなモジュールがいくつかの単純なクライアント側JSのプロジェクトに追加するオーバーヘッドはどれくらいですか?
カムソフト
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.