Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
rESOlveD: made a big mistake...did not include the form_tag()...such stupididty thanks! On Sun, Apr 25, 2010 at 3:11 PM, Parijat Kalia wrote: > Indeed this is surprising, I mean, it has to be applicable across all > modules and pages right? I have one page where this is not applicable and > the

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
Indeed this is surprising, I mean, it has to be applicable across all modules and pages right? I have one page where this is not applicable and the page is working fine, and another page where it is not working at all. On Sun, Apr 25, 2010 at 3:09 PM, Eno wrote: > On Sun, 25 Apr 2010, Parijat Ka

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Eno
On Sun, 25 Apr 2010, Parijat Kalia wrote: > Since when did that start happening...I am using 1.2.9and I have a bunch > of other forms where all I do is > > echo use_helper('Form') and end with > > the submit button in that works perfectly fine and there is no manual > tag nor the need for

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
Since when did that start happening...I am using 1.2.9and I have a bunch of other forms where all I do is echo use_helper('Form') and end with the submit button in that works perfectly fine and there is no manual tag nor the need for form_tag() or renderFormTag() at all. Please help clarif

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Gábor Fási
That alone does not echo a form tag, as you can easily see if you check the generated source. You need to create a tag manually, call the form_tag() helper, or call the renderFormTag() method of an sfForm instance. On Sun, Apr 25, 2010 at 23:41, Parijat Kalia wrote: > yES, I am doing echo use_he

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
yES, I am doing echo use_helper('Form'), is that wrong? On Sun, Apr 25, 2010 at 2:04 PM, Gábor Fási wrote: > Do you echo a form tag as well? > > On Sun, Apr 25, 2010 at 22:53, Parijat Kalia > wrote: > > Hey guys, > > > > Here is a piece of code in my action that I can't seem to understand what

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Gábor Fási
Do you echo a form tag as well? On Sun, Apr 25, 2010 at 22:53, Parijat Kalia wrote: > Hey guys, > > Here is a piece of code in my action that I can't seem to understand what > has gone wrong with > >   if($this->getRequest()->isMethod('post')) >       { >          echo "hello"; > ... > ..