No. I need to know when the form is submitted to make some process. For example if i have form with <input type="submit" name="mysubmit"> and some inputs for data, I can process it in controller with checking form submitting like that:
mycontroller_function(): if request.vars.mysubmit: do something but if I want to submit form without! button, for example using onClick event on <input type="checkbox"> How can I check, if form is submitted? On 7 мар, 19:56, Iceberg <iceb...@21cn.com> wrote: > On Mar 7, 1:33 am, LightOfMooN <vladsale...@yandex.ru> wrote: > > > I try to process <checkbox onClick="submit()">, but can't check, if > > form with that checkbox is submitted. > > > How to check if form is submitted? > > As long as your form is submitted into your own web server, a new line > of log appears in the log file or console. Isn't that your case?