Re: 1.2 Pagination forgetting conditions?

2007-02-23 Thread NOSLOW
I found that if you have other params set (field sort, direction, order), then you need to also unset those as well: unset($this-params['pass']['page']); unset($this-params['pass']['sort']); unset($this-params['pass']['direction']);

Re: 1.2 Pagination forgetting conditions?

2007-02-23 Thread Cynthia
I like using the session to carry over some parameters paginate would otherwise forget about :) On Feb 23, 7:27 pm, NOSLOW [EMAIL PROTECTED] wrote: I found that if you have other params set (field sort, direction, order), then you need to also unset those as well:

Re: 1.2 Pagination forgetting conditions?

2007-02-07 Thread Preloader
Hello Chris, Yesterday I had the same problem, when programming a fulltext search. Should also work for filtering. I solved it this way: // this is my search action in my controller function search(){ // if I got a search text string from the form, then overwrite if