Can I bind anything to submit button? If yes how to do it?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can bind to the JavaScript submit event:

$('form').submit(function() { 
    // do your stuff
}

This binds not to the submit button but to the submit event of the form (that hopefully contains the button).

link|improve this answer
How to add this from php? – user1137146 Jan 25 at 10:21
Can you clarify what you want to add from php? You can make an ajax call inside this submit binding that calls you php script (if that was what you ment). – Dominik Schreiber Jan 26 at 9:17
feedback

Just use regular button

$b=$this->add('Button');
$b->js('click',array(
    $form->js()->submit(),  // submit form
    $otherelemen->js()->reload(),  // do some other action
    $b->js()->disable()          // disable button
));
link|improve this answer
wohohoooh, this is interesting! i didn't know js() can be passed an array of js() for second parameter.. this is a great way to avoid very deep nesting of js(null, js(null, js(null, ..))) i guess i'm still at the tip of the iceberg trying to understand how agiletoolkit works! :) – Open Technologist Feb 3 at 6:32
It wasn't added too long ago. agiletoolkit.org/learn/understand/chains/multi – romaninsh Feb 3 at 11:59
feedback

Your Answer

 
or
required, but never shown

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