[fw-general] Zend_Http_Response

2011-03-28 Thread Steve Rayner
I am trying to get the value of the 's' parameter in this http responce; HTML HEAD link rel=stylesheet type=text/css href=/server/server.css META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=windows-1252 META HTTP-EQUIV=Content-Language CONTENT=en-GB TITLESite Title - System Administrator

Re: [fw-general] Zend_Http_Response

2011-03-28 Thread Matthew Weier O'Phinney
-- Steve Rayner srayne...@googlemail.com wrote (on Monday, 28 March 2011, 03:18 PM +0100): I am trying to get the value of the 's' parameter in this http responce; HTML HEAD link rel=stylesheet type=text/css href=/server/server.css META HTTP-EQUIV=Content-Type CONTENT=text/html;

[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.