ajax_example_autotextfields_callback

7 ajax_example.module ajax_example_autotextfields_callback($form, $form_state)
8 ajax_example.module ajax_example_autotextfields_callback($form, $form_state)

Selects the piece of the form we want to use as replacement text and returns it as a form (renderable array).

Return value

renderable array (the textfields element)

Related topics

1 string reference to 'ajax_example_autotextfields_callback'

File

ajax_example/ajax_example.module, line 400
AJAX Examples module file with basic examples.

Code

function ajax_example_autotextfields_callback($form, $form_state) {
  return $form['textfields'];
}
Login or register to post comments