Re: Mounting and displaying correct URL's

2011-11-04 Thread anantasthana
Thanks for the Quick and extremely helpful reply. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Mounting-and-displaying-correct-URL-s-tp3992126p3992140.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Mounting and displaying correct URL's

2011-11-04 Thread Igor Vaynberg
use setResponsePage(ProductTypePage.class, new PageParameters().put("Category", "Food")); -igor On Fri, Nov 4, 2011 at 5:11 PM, anantasthana wrote: > I am mounting url's like > > mountPage("ProductType/${Category}",ProductTypePage.class) > > and i read the Parameter Category and pull the info fr

Mounting and displaying correct URL's

2011-11-04 Thread anantasthana
I am mounting url's like mountPage("ProductType/${Category}",ProductTypePage.class) and i read the Parameter Category and pull the info from the database So if i am on the page for food the URL is /ProductType/Food now inside my application im using redirects which redirect to these pages b