Re: Window Handling - CODI like mode?

2013-12-02 Thread Thomas Andraschko
Hi Gerhard,

thats what i thought.
Unfortunately i can't upgrade, as the most of our customers use JavaEE6
servers.
So i hope that a CODI-Like mode could be added!

Regards,
Thomas


2013/12/2 Gerhard Petracek 

> hi thomas,
>
> if you can upgrade to jsf 2.2, you can use ClientWindowRenderMode.DELEGATED
> (+ configure "url" for javax.faces.CLIENT_WINDOW_MODE).
>
> regards,
> gerhard
>
>
>
> 2013/11/27 Thomas Andraschko 
>
> > Hi,
> >
> > i always get a loading screen with the new DS window handling.
> > Is there a chance to get the same behavior as with CODI?
> >
> > Regards,
> > Thomas
> >
>


Re: Window Handling - CODI like mode?

2013-12-02 Thread Gerhard Petracek
hi thomas,

if you can upgrade to jsf 2.2, you can use ClientWindowRenderMode.DELEGATED
(+ configure "url" for javax.faces.CLIENT_WINDOW_MODE).

regards,
gerhard



2013/11/27 Thomas Andraschko 

> Hi,
>
> i always get a loading screen with the new DS window handling.
> Is there a chance to get the same behavior as with CODI?
>
> Regards,
> Thomas
>


Re: Window Handling - CODI like mode?

2013-11-27 Thread Thomas Andraschko
Hi,

yes but i don't want to disable it.
I would like to use WindowScoped etc. in the future.

Regards,
Thomas


2013/11/27 Florian Hell 

> Hi,
>
> if you don't wanna have those window loading screen you can create a own
> ClientWindowConfig like following
>
> @Specializes
> public class CustomClientWindowConfig extends DefaultClientWindowConfig {
>
> /**
>  * Disables the Window Id etc.
>  */
> public ClientWindowRenderMode getClientWindowRenderMode(FacesContext
> facesContext) {
> return ClientWindowRenderMode.NONE;
> }
> }
>
> Greetz
> Florian
>
> -Ursprüngliche Nachricht-
> Von: Thomas Andraschko [mailto:andraschko.tho...@gmail.com]
> Gesendet: Mittwoch, 27. November 2013 10:19
> An: dev@deltaspike.apache.org
> Betreff: Window Handling - CODI like mode?
>
> Hi,
>
> i always get a loading screen with the new DS window handling.
> Is there a chance to get the same behavior as with CODI?
>
> Regards,
> Thomas
>
>