Re: [fw-general] after submit form event

2011-03-29 Thread Jurian Sluiman
On Monday 28 Mar 2011 23:39:48 Hector Virgen wrote: You'll need to use AJAX to show the result of the form submission in the dialog box. I'm not familiar with Dojo but generally the implementation goes something like this: 1. Attach an event handler to the form's submit event to

[fw-general] after submit form event

2011-03-28 Thread diego
hi, my dojo form checks data on a data base on submit and i want a dijit dialog that shows the result after submition. i do create the dialog but i don´t know when to show it, i don´t find the right event... onClick or onSubmit shows me the wrong message because both events fires before the

Re: [fw-general] after submit form event

2011-03-28 Thread Hector Virgen
You'll need to use AJAX to show the result of the form submission in the dialog box. I'm not familiar with Dojo but generally the implementation goes something like this: 1. Attach an event handler to the form's submit event to trigger a callback function when the submit event is fired.