how to pass arguments to Ajax callback function in drupal 7 form api

$element['field name'] = array(
        '#type' => 'textfield',
        '#ajax' => array(
          'callback' => 'ajax_function_name_callback'/%/%/%,
          'method' => 'replace',
          'event' => 'blur',
              'effect' => 'fade',
              'progress' => array('type' => 'throbber', 'message' => ''),
        ),
    );

function ajax_function_name_callback($form,$form_state)
{
return ..
}

for example if i need to specify form element to make action using ajax i need to pass the element name to the function and make customer operation and return the result to another element form

i need passed aruguments to this callback function 'callback' => 'ajax_function_name_callback'

function ajax_function_name_callback($args1,$args2,...$form,$form_state) { return .. }

2 - and how Through the form ?

thanks..

if i dont know what the $input_name it's genrated from something oprations i need to tell ajax_'function_name_callback the name of this field to make

$element[$input_name] = array(
        '#type' => 'textfield',
        '#size' => '41',
        '#ajax' => array(
//////////////////////////////////////////////////////////////////////////////////
// here how i tell the ajax call back about this arguments informationvlike parents of this field ... etc
/////////////////////////////////////////////////////////////////////////////////
              'callback' => 'ajax_'function_name_callback',
          'method' => 'replace',
          'event' => 'blur',
              'effect' => 'fade',
              'progress' => array('type' => 'throbber', 'message' => ''),
        ),
    );


function ajax_'function_name_callback($arg_position,$arg_fieldName,$form,$form_state)
{
$form[$arg_position][$arg_fieldName][#value] = anotherFunction($form[$arg_position][$arg_fieldName][#value]);
return $form[$arg_position][$arg_fieldName];
}
link|improve this question
feedback

2 Answers

Through the form. No need for a custom callback.

The ajax callback has access to all information that is part of the form. You can for example add a form element with type hidden (sent to the browser, can be changed with JavaScript for example) or value (only used internally, can contain any kind of data like objects and can not be changed by the user).

If you can give a more detailed example of what you want to do, I can give you a more detailed explanation.

link|improve this answer
i need passed aruguments to this callback function 'callback' => 'ajax_function_name_callback' – user764851 May 22 '11 at 15:42
function ajax_function_name_callback($args1,$args2,...$form,$form_state) { return .. } – user764851 May 22 '11 at 15:42
Yeah, what arguments, where do they come from? As I said, you should pass them through the form structure. – Berdir May 22 '11 at 15:57
mmmm i don't understand you yet ... plz can you give me example how to pass arguments to ajax callback function – user764851 May 22 '11 at 16:05
If you tell me what exactly you want to do :) What do you want to pass? Something that the user has to enter? or something that you know when building the form? – Berdir May 22 '11 at 16:14
show 7 more comments
feedback

Use this $form_state['triggering_element'] this will tell you the name of the triggering element and give you all of its attributes.

link|improve this answer
Many thanks for $form_state['triggering_element'], I posted an example on api.drupal.org/api/drupal/includes--ajax.inc/group/ajax/… – Lahode Jul 7 '11 at 13:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.