Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread yong mook kim
gor Vaynberg > Subject: Re: AjaxLazyLoadPanel fallback version? > To: users@wicket.apache.org > Date: Friday, May 29, 2009, 2:05 PM > and what if you need to know > javascript support when rendering the > first page as you often do? > > the solution we have is generic and

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread yong mook kim
a regular button instead of ajax...? Is this sound crazy or technically impossible? --- On Fri, 5/29/09, Igor Vaynberg wrote: > From: Igor Vaynberg > Subject: Re: AjaxLazyLoadPanel fallback version? > To: users@wicket.apache.org > Date: Friday, May 29, 2009, 12:14 PM > you can as

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Igor Vaynberg
your point. However what i want is a browser's >> >> javascript detect function, if isJavascriptEnable() then load the >> >> LazyLoadPanel else fall back to normal panel behaviour. >> >> > >> >> > something like below >> >>

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Cristi Manole
> >> javascript detect function, if isJavascriptEnable() then load the > >> LazyLoadPanel else fall back to normal panel behaviour. > >> > > >> > something like below > >> > > >> > Page start > >> > > >> > if(

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Igor Vaynberg
; > >> > something like below >> > >> > Page start >> > >> > if(isJavascriptEnable()){ >> >   add(new AjaxLazyLoadPanel('123')... >> > }else{ >> >   add(new ABCPanel('123') >> > } >> > >&g

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Cristi Manole
vascriptEnable()){ > > add(new AjaxLazyLoadPanel('123')... > > }else{ > > add(new ABCPanel('123') > > } > > > > Page end > > > > I wonder how Wicket AjaxFallBackButton work? > > > > > > > &

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Igor Vaynberg
. > } > > Page end > > I wonder how Wicket AjaxFallBackButton work? > > > > > > --- On Fri, 5/29/09, Martijn Dashorst wrote: > >> From: Martijn Dashorst >> Subject: Re: AjaxLazyLoadPanel fallback version? >> To: users@wicket.apache.org

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread yong mook kim
Panel('123')... }else{ add(new ABCPanel('123') } Page end I wonder how Wicket AjaxFallBackButton work? --- On Fri, 5/29/09, Martijn Dashorst wrote: > From: Martijn Dashorst > Subject: Re: AjaxLazyLoadPanel fallback version? > To: users@wicket

Re: AjaxLazyLoadPanel fallback version?

2009-05-29 Thread Martijn Dashorst
keep loading forever, page will not return. Is there > a AjaxLazyLoadPanel fallback version which will delegate to normal request if > javascript is disabled? > > I wonder how Wicket detect the browser'

AjaxLazyLoadPanel fallback version?

2009-05-29 Thread yong mook kim
Hi, When browser's Javascript is disabled, AjaxLazyLoadPanel's image (wicket ajax deafult image) will keep loading forever, page will not return. Is there a AjaxLazyLoadPanel fallback version which will delegate to normal request if javascript is disabled? I wonder how Wicket