Re: [symfony-users] Re: sfDoctrinePager - sorting items

2010-09-30 Thread Michal Adamkiewicz
Thank you! That helped me figure it out. One more thing which had to be done: in the indexSuccess template I had to pass the 'title' variable to the pager. Now it looks like that: indexSuccess.php: $pager, 'internal_uri' => '@jobs', 'title' => $title)) ?> On Thu, Sep 30, 2010 at 4:38 P

[symfony-users] Re: sfDoctrinePager - sorting items

2010-09-30 Thread guiguiboy
Hi, Don't you forget a title parameter in your link ? Try in your action : $this->title = $request->getParameter('title'); in your template : On 29 sep, 21:02, coda wrote: > Hello, > I'm following Jobeet tutorial and want to add some sorting options to > the sfDoctrinePager > > That's my co