Is your goal to understand which links are used to open certain bookmarkable pages? If so, here's an approach that might get you started.
Create a Behavior which appends a tracking query parameter to BookmarkablePageLinks. You could add it manually to each link you want to track, or apply it application-wide through an IComponentOnBeforeRenderListener registered with Application#addPreComponentOnBeforeRenderListener(). Then you you'd have to watch for these query parameters in subsequent application requests, maybe by inspecting the Request object in an Application#newRequestCycle() override. Hope that helps, Dan On Thu, Aug 18, 2011 at 4:51 AM, Mike Mander <[email protected]> wrote: > Hi, > > i would like to log execution of bookmarkable page links. I know that they > are only renderered in markup and call the page from the browser. > > Maybe someone has a hint for me here? > > Thanks > Mike > > ------------------------------**------------------------------**--------- > To unsubscribe, e-mail: > users-unsubscribe@wicket.**apache.org<[email protected]> > For additional commands, e-mail: [email protected] > >
