Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $form['activity']['submit'] = array(
  2. '#type' => 'button',
  3. '#value' => t('Execute'),
  4. '#name' => 'test_button',
  5. '#submit' => array('my_custom_form_submit')
  6. );
  7.  
  8. $form['activity']['submit'] = array(
  9. '#type' => 'button',
  10. '#value' => t('Execute'),
  11. '#name' => 'test_button',
  12. '#ajax' => array(
  13. 'callback' => '_handle_form_submit',
  14. 'effect' => 'fade',
  15. ),
  16. );
  17.  
  18. function _handle_form_submit($form, $form_state) {
  19. // your stuff here
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement