Symfony 1.4 filter on index page
- by Imran Azad
I'm trying to apply a filter to the index page of my module, the code works as I've tested it on another page called filter within the same module. The problem I'm having is that on submitting the filter on the index page (form action points to index) Symfony instead decides to route to the create action for some reason. Although the create method isn't visible in the URL a new form is instantiated on the index page which leads me to suspect it is routing to the create action:
http://locahost.com/frontend_dev.php/mymodule
Any ideas how I can get a filter to work on the index page?