Re: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Sonny Savage
Is it possible to append a string to the URL with the search params? On Sun, Apr 13, 2008 at 11:22 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all (and Nathan in particular)... I've moved from using a typical Previous / Next pagination to using Nathan Strutz' Pagination.cfc

RE: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Rick Faircloth
him, too. I can have a look and check out that route for the params. Thanks, Sonny! Rick -Original Message- From: Sonny Savage [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 9:05 AM To: CF-Talk Subject: Re: Pagination CFC: How to pass search parameters? Is it possible

Re: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Nathan Strutz
this message. If not, I'll email him, too. I can have a look and check out that route for the params. Thanks, Sonny! Rick -Original Message- From: Sonny Savage [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 9:05 AM To: CF-Talk Subject: Re: Pagination CFC: How

Re: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Josh Nathanson
in your query. This way you don't have to mess with the paging links' url params at all. -- Josh - Original Message - From: Rick Faircloth [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, April 14, 2008 8:59 AM Subject: RE: Pagination CFC: How to pass search parameters

RE: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Rick Faircloth
, 2008 11:15 AM To: CF-Talk Subject: Re: Pagination CFC: How to pass search parameters? Rick, I think Sonny's got it right. Pagination.cfc doesn't post anything, but if you can move all your form variables to your URL, something like: cfset setBaseLink(index.cfm?searchparam1=abcsearchparam2

RE: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Rick Faircloth
to grab the form variables upon change and then either use form variables or URL variables. Thoughts? Rick -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 12:25 PM To: CF-Talk Subject: Re: Pagination CFC: How to pass search parameters

Re: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Sonny Savage
Subject: Re: Pagination CFC: How to pass search parameters? Rick, Why not create a session variable to hold the search parameters? Then if the form is re-submitted, i.e. the search parameters are changed, you can re-assign the new form values to the session variables. Then you would

Re: Pagination CFC: How to pass search parameters?

2008-04-14 Thread Josh Nathanson
with the new url string. -- Josh - Original Message - From: Rick Faircloth [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, April 14, 2008 11:05 AM Subject: RE: Pagination CFC: How to pass search parameters? I thought about that, but I usually integrate the search parameter

Pagination CFC: How to pass search parameters?

2008-04-13 Thread Rick Faircloth
Hi, all (and Nathan in particular)... I've moved from using a typical Previous / Next pagination to using Nathan Strutz' Pagination.cfc http://www.dopefly.com/projects/pagination/pagination_cfc_documentation.cfm It works very well! However, I've realized a problem, not with the cfc, but with