Drupal 7: Best Practice for a Dynamic Select List in Drupal 7

前端 未结 2 1994
时光取名叫无心
时光取名叫无心 2021-01-31 22:25

What is the best practice for a dynamic select list in Drupal 7?

  1. Create a Field with dummy options via the UI and overriding the options with hook_form_FORM_
2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-31 23:09

    The callback for the answer from wildpeaks should be:

    function mymodule_ajax_callback($form, $form_state) {
        return render($form['dropdown_second']);
    }
    

提交回复
热议问题