Can you please elaborate.
I have this Link in my List class
Link itemLink = new Link( "itemLink", listItem.getModel() ){
@Override
public void onClick() {
PageParameters parameters = new PageParameters();
parameters.add( "ItemId", ((Item)getModelObject()).getId().toString());
ItemPage itemPage = new ItemPage( parameters, ItemListPage.this );
itemPage.setRedirect( true );
setResponsePage( itemPage );
}
};
This will produce url like wicket:interface=:2::::
In My application class I have tried a number of mounting but without
success. Any more pointers?
I use the reference for the ItemListPage to go back from ItemPage to
ItemListPage plus I use the same background as in the ItemListPage.
If a google spider where to index this it would not be successful so I need
a way to get this to be bookmarkable.
--
View this message in context:
http://www.nabble.com/More-on-wicket-url-stratergy-tp18212748p18239900.html
Sent from the Wicket - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]