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 reference the session variables rather than the form variables 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" <[email protected]> Sent: Monday, April 14, 2008 8:59 AM Subject: RE: Pagination CFC: How to pass search parameters? > Thanks for the feedback, Nathan... > > I'll check into adding the URL params. > > Hey, if I add the request to riaforge, any chance the solution > might be integrated in the next 24 hours? jk :o) > > Rick > >> -----Original Message----- >> From: Nathan Strutz [mailto:[EMAIL PROTECTED] >> Sent: Monday, April 14, 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=abc&searchparam2=123[...]") /> >> >> Then you may have to modify your app to work with URL instead of form >> vars. >> >> The alternate way to do it is to make a custom pagination cfc to extend >> my >> Pagination.cfc and override some of the methods in order to get the HTML >> output the way you want. This is discussed a little bit here: >> >> http://www.dopefly.com/projects/pagination/pagination_cfc_documentation.cfm#Section6 >> >> I guess you would need to override renderHTML(), maybe even just >> "decorate" >> it - that is, call super.renderHTML(), run some regEx's on what's >> returned >> and return that. >> >> The 3rd way to do it is to submit a feature request to the riaforge site >> and >> wait for it. :) >> >> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303325 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

