Re: CSS bundles order does not seem stable when using an application

2013-03-18 Thread Sylvain Vieujot
The PriorityHeaderItem solved the problem. Thank you ! On Mon, 2013-03-18 at 05:49 -0700, armandoxxx wrote: read this about resources: resources management http://wicketinaction.com/2012/07/wicket-6-resource-management/ us PriorityHeaderItem() Regards Armando -- View

CSS bundles order does not seem stable when using an application

2013-03-17 Thread Sylvain Vieujot
Bootstrap.renderHeadResponsive( response ) first would ensure this order. Is there an other way to fix this order ? Thank you, Sylvain.

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Sylvain Vieujot
(JavaScriptHeaderItem.forReference(Bootstrap.plain())); return dependencies; } here's a short introduction to wicket resource management: http://wicketinaction.com/2012/07/wicket-6-resource-management/ best, Michael Am 17.03.2013 um 07:09 schrieb Sylvain Vieujot sv.mailingli...@gmail.com

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Sylvain Vieujot
the bootstrap images. On Sun, 2013-03-17 at 22:45 +0100, Michael Haitz wrote: does adding the bootstrap css resource reference to the bundle solve your problem? sorry, i don't have access to the code at the moment. Am 17.03.2013 um 21:46 schrieb Sylvain Vieujot sv.mailingli...@gmail.com

Wicket job offer in Dubai

2013-03-17 Thread Sylvain Vieujot
Financial Centre, and includes expanding our intranet which is quite extensive and key to the business, and working on a few other smaller projects. The key skills are : Wicket, Hibernate, Javascript, Maven and linux administration. If interested, please contact me at : sylvain at companydomain

Re: [Wicketstuff] Google Maps 3 component

2012-09-21 Thread Sylvain Vieujot
of using a GInfoWindow with a wicket component as content ? Thank you, Sylvain. P.S. I also found that the GMap3's fitMarkers works only for works in AjaxRequests ( See issue https://github.com/wicketstuff/core/issues/155 ) On Thu, 2012-08-09 at 21:45 +0200, Joachim Rohde wrote: Hello

Re: Wicket 6 version of GMap2 ?

2012-07-22 Thread Sylvain Vieujot
Ok. Thank you. On Sun, 2012-07-22 at 15:50 +0300, Martin Grigorov wrote: Hi, You'll have to build and install it locally until WicketStuff 6.0.0 is released. On Sun, Jul 22, 2012 at 1:17 AM, Sylvain Vieujot sylvain.vieu...@gmail.com wrote: Hello, I upgraded to Wicket 6.0.0-beta 3

Wicket 6 version of GMap2 ?

2012-07-21 Thread Sylvain Vieujot
done to port GMAP2 to wicket 6. What dependency repository should I use in maven to take advantage to this ? Thank you, Sylvain. signature.asc Description: This is a digitally signed message part

Re: Unnecessary 302 redirects in Wicket 1.5

2012-06-25 Thread sylvain
Hi, In order to avoid redirect, we add this code in our application class : setPageRendererProvider(new IPageRendererProvider() { @Override public PageRenderer get(final RenderPageRequestHandler context) {

Re: Exception when Session expired

2012-06-13 Thread sylvain
Hi Martin, Yes it's more correct to put this code page = getExpirationPage(). But my problem, when my session expire, I never pass in the onException. Have you an idea why? -- View this message in context:

Exception when Session expired

2012-06-12 Thread sylvain
? Thanks in advance Sylvain -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Exception-when-Session-expired-tp4649854.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e

Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
the component and the page, but without success. Is there a way to do this ? Thank you, Sylvain. signature.asc Description: This is a digitally signed message part

Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
the component and the page, but without success. Is there a way to do this ? Thank you, Sylvain. signature.asc Description: This is a digitally signed message part

Re: Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
) is stateless by nature. On Wed, Sep 7, 2011 at 11:51 AM, Sylvain Vieujot sylvain.vieu...@gmail.com wrote: Hello, I have a stateless page, and I would like to periodically refresh a section of this page. If I do : add( new MyPanel( header ) .setOutputMarkupId( true

Re: Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
/StatelessAjaxEventBehavior.java -igor On Wed, Sep 7, 2011 at 3:36 AM, Sylvain Vieujot svieu...@apache.org wrote: Hello, I have a stateless page, and I would like to periodically refresh a section of this page. If I do : add( new MyPanel( header ) .setOutputMarkupId( true

Re: Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
; } @Override protected void onBind() { getComponent().setMarkupId( myForcedID ); // FIXME: This works, but is not very clean ... to say the least super.onBind(); } } Is there a recommended way to fix this ? Thank you, Sylvain. On Wed, 2011-09-07

Re: Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
On Wed, 2011-09-07 at 10:19 -0700, Igor Vaynberg wrote: On Wed, Sep 7, 2011 at 10:11 AM, Sylvain Vieujot svieu...@apache.org wrote: I looked at this code, but it does not really help as it has to bind to an event, whilst I am trying to do an auto update component. I have 2 questions

Re: Stateless page with an auto update section

2011-09-07 Thread Sylvain Vieujot
whatever fits for your needs. On Wed, Sep 7, 2011 at 9:35 PM, Sylvain Vieujot svieu...@apache.org wrote: On Wed, 2011-09-07 at 10:19 -0700, Igor Vaynberg wrote: On Wed, Sep 7, 2011 at 10:11 AM, Sylvain Vieujot svieu...@apache.org wrote: I looked