I have mymodule_field_widget_form(), that creates an auto complete text field, and 3 buttons for a custom field. On 2 buttons I'm using ajax callback functions that invoke custom ajax commands. When function execution enters the callback function of either buttons, the $form_state['triggering_element'] is always the same, the last button (form element...?) in the form that was created by the hook above. I would like to get the element that actually triggered the callback. It is possible, the this custom field is added to a content type more than once, and that is why it is important. The custom ajax command creates a jQuery ui dialog with an iframe or plain html content in it, depending on several factors, so I thought it is not necessary to re-render the whole form in which the button was triggered. Actually there is no re-rendering anywhere, maybe that is the problem?
Cheers