3
Có thể thay thế nhiều phần tử biểu mẫu (trình bao bọc) được kích hoạt chỉ bằng một phần tử kích hoạt #ajax không?
function ajax_example_simplest($form, &$form_state) { //This is my ajax trigger element $form['element_trigger'] = array( '#type' => 'select', '#options' => array( 'one' => 'one', 'two' => 'two', 'three' => 'three', ), '#ajax' => array( 'callback' => 'ajax_example_simplest_callback', /** Q: Can I somehow declare more than one wrapper? **/ //Say for instance, something …
52
ajax