Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread Igor Vaynberg
BookmarkablePageLinks always generates a stateless url, thats kind of the point... -igor On Tue, Nov 29, 2011 at 3:59 PM, Zilvinas Vilutis wrote: > afaik BookmarkablePageLinks generate stateless URLs for stateless > pages only, otherwise they act as regular links. Please correct me if > I'm wron

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread Zilvinas Vilutis
afaik BookmarkablePageLinks generate stateless URLs for stateless pages only, otherwise they act as regular links. Please correct me if I'm wrong. Regards Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Tue, Nov 29, 2011 at 12:29 PM, Andrea Del Bene wrote: > That'

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread Andrea Del Bene
That's strange. BookmarkablePageLinks should generate a constant URL. Do you pass them any PageParameters in the constructor? Have you checked if links URL remains the same from a visit to your page to another? They are already BookmarkablePageLinks. -- View this message in context: http://apa

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread eugenebalt
They are already BookmarkablePageLinks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Link-Visited-Color-Doesn-t-Change-any-ideas-tp4119563p4120200.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread Sven Meier
Use bookmarkable page links? Sven On 11/29/2011 06:38 PM, eugenebalt wrote: Thanks, any ideas on how to mark the links correctly as visited when the app is currently running? That's the behavior the user expects. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Lin

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread eugenebalt
Thanks, any ideas on how to mark the links correctly as visited when the app is currently running? That's the behavior the user expects. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Link-Visited-Color-Doesn-t-Change-any-ideas-tp4119563p4120037.html Sent from the Use

Re: "Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread Andrea Del Bene
Probably this is due to Wicket links which contain informations on page version (it should be an incremental id). So each time you return to the same page Wicket generate different values for href attribute because version id has been incremented. That's way they seem not visited. When you resta

"Link Visited" Color Doesn't Change, any ideas?

2011-11-29 Thread eugenebalt
I have a page with links that redirect to other pages. Upon clicking the original page again (after navigating away from it), the links don't change their color to "visited"; they're the same color as unvisited. However, when I *restart my application* and go to that page, the link now changes co