PageExpiredException and PageExpired

2012-03-14 Thread Francois Meillet
I have the following settings getPageSettings().setRecreateMountedPagesAfterExpiry(false); getApplicationSettings().setPageExpiredErrorPage(PageExpired.class); I don't get the PageExpired (which is bookmarkable) for PageExpiredException Do I forget something ? François

Could not find component after session dies

2012-03-14 Thread Francois Meillet
Release: Wicket 6.0-SNAPSHOT The pages: All pages extends a Skeleton, which has a header panel. In this header panel, another panel is displayed, depending if the user is logged (ConnectedPanel) or not (HeaderLoginPanel). So when a user is not connected, the component's structure is Page-Heade

seo - canonical link element

2012-03-06 Thread Francois Meillet
Hi Wicketers, Do you use the Canonical Link Element in your page ? (A canonical page is the preferred version of a set of pages with highly similar content.) http://googlewebmastercentral.blogspot.com/2011/06/supporting-relcanonical-http-headers.html http://googlewebmastercentral.blogspot.com/20

Re: LoadableDetachableModels for a ListView ( database with Cayenne)

2012-02-16 Thread Francois Meillet
Hi Vineet, public LoadableDetachableModel load(final Long xxx) { LoadableDetachableModel> model = new LoadableDetachableModel>() { protected YourClass load() { try { List list = get your liste here( xxx ) return list

Re: AjaxTabbedPanel - Enable / Disable Individual Tab.

2012-02-12 Thread Francois Meillet
you can override the newLink method in the TabbedPanel François Le 12 févr. 2012 à 01:53, ej595 a écrit : > Does anyone know how to enable or disable a Tab from a tabbedpanel. I dont > mean visible or invisible. I want to be able to show all tabs, but disable > the user from being able to cli

Re: Communication (in-vm) between webapps

2012-02-04 Thread Francois Meillet
Hi Sebastian, 1) crossContext : Tomcat 7 - javadocs: Set to true if you want calls within this application to ServletContext.getContext() to successfully return a request dispatcher for other web applications running on this virtual host. But if you want something secure : Set t

Re: Getting url for a page

2011-12-19 Thread Francois Meillet
Hi Niranjan, Url url = RequestCycle.get().mapUrlFor(pageClass, parameters); String fullurl = RequestCycle.get().getUrlRenderer().renderFullUrl(url); François Le 20 déc. 2011 à 03:52, Niranjan Rao a écrit : > Hi folks, > > On wicket 1.5.1 > > I have a page that calls a JSON service url in di

<    1   2   3   4