Re: How to remove query parmeter from url string

2012-10-17 Thread Alejandro Scandroli
s. As far as my logic question, I think that it > is probably best suited for stack overflow as it doesn't completely relate > to tapestry. Hopefully this post will help others in the future who may be > trying to build some sort of eCommerce site. > > > > -- > View t

Re: How to remove query parmeter from url string

2012-10-17 Thread George Christman
ay be trying to build some sort of eCommerce site. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5717007.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: How to remove query parmeter from url string

2012-10-17 Thread Lance Java
t: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5717006.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache

Re: How to remove query parmeter from url string

2012-10-17 Thread Thiago H de Paula Figueiredo
On Wed, 17 Oct 2012 10:36:46 -0300, George Christman wrote: So I think this is my last question in regards to this topic. If your doing your calculations on the fly, example converting aston marton to aston-martin which would mean you would later need to convert it back to aston marton to d

Re: How to remove query parmeter from url string

2012-10-17 Thread George Christman
asily change it's encoder strategy. Example uses dashes instead of the zeros. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5717004.html Sent from the Tapestry - User mailing list archive at

Re: How to remove query parmeter from url string

2012-10-17 Thread Lance Java
global, you might want to consider overriding the default string ValueEncoder. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5717001.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: How to remove query parmeter from url string

2012-10-17 Thread George Christman
Lance. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716998.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe,

Re: How to remove query parmeter from url string

2012-10-17 Thread Lance Java
obably a bad idea to have spaces in primary keys. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716990.html Sent from the Tapestry - User mailing list a

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
#x27;s up to you in the end > Also, how do you typically handle spaces in the URL parameters Tapestry converts your entities to client side strings using an encoder @see -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-t

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
ctory.create(this.vehicleConfigurationDAO.getModels(make), "name"); return searchModelZone.getBody(); } } -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716985.html Sent from the Tapestry - User

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
Since you've got two entry points, I'd probably use @RequestParam in onActivate() and populate the same render variables that are populated by submitting the form. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
Would it be better to somehow use @RequestParam inside of onActivate rather than @ActivationRequestParameter? BTW, I'll let you know about returning the page instance tonight. Hopefully that works :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
Ok, cool... then your @ActivationRequestParameter approach seems fine to me. Just checking ;) -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716959.html Sent from the Tapestry - User mailing list archive at

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716956.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
session or PersistenceConstants.CLIENT to store in the URL. http://tapestry.apache.org/persistent-page-data.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716943.html Sent from the Tapestry - User mailing list

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
f the rendering behaviour. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716939.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: How to remove query parmeter from url string

2012-10-16 Thread Thiago H de Paula Figueiredo
On Tue, 16 Oct 2012 10:26:10 -0300, Lance Java wrote: On second thought, return this (aka the current page instance) I wouldn't return 'this', as it always forces a redirect, and that's not what you want in all cases, specially inside onActivate() methods. George, I think there's no rea

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
st used page on the site, it tends to concern me. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716937.html Sent from the Tapestry - User mailing list archiv

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
On second thought, return this (aka the current page instance) -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716936.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
You could simply return this or null. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716935.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
is message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716934.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
Ah, I get it now... sorry. I've not needed to do this but can you set your @ActivationRequestParameter values to null? -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716933.html Sent from the Tapestry -

Re: How to remove query parmeter from url string

2012-10-16 Thread George Christman
-- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716931.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To

Re: How to remove query parmeter from url string

2012-10-16 Thread Lance Java
you should touch request parameters, mostly in cases where you are integrating with 3rd party libraries. http://tapestry.apache.org/forms-and-validation.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922p5716930

How to remove query parmeter from url string

2012-10-15 Thread George Christman
c SelectModel getModelSearchModel() { return this.selectModelFactory.create(this.modelDAO.findAll(), "name"); } } -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-remove-query-parmeter-from-url-string-tp5716922.html Sent from the Tapes