Re: Animated page switch possible?

2010-07-22 Thread Anh
Yes, that's basically what I do with a "setResponsePanel(..)" call:
you have to call this everywhere in place of setResponsePage for
links, submits, etc.

Not really optimal if you are trying add this to an existing wicket app.

That's why I shared Per's interest in if there was a way to do this
"transparently" with setResponsePage, etc.

Thanks!

On Thu, Jul 22, 2010 at 12:56 PM, James Carman
 wrote:
> You'd almost have to decorate every form submit and every link on the
> page.  I don't know if you need AJAX for this, but you'd definitely
> need some client-side JS.  The back button would probably cause some
> troubles, though.
>
> On Thu, Jul 22, 2010 at 3:49 PM, Anh <7za...@gmail.com> wrote:
>> I personally don't have an example, but yes I think this would have to
>> involve Ajax in some way.
>>
>> I have done similar in an app, but only for switching out the main
>> panel.  E.g. I created a "setResponsePanel (...)" method in my page
>> hierarchy.
>>
>> Perhaps this could be used to mimic a full page transition by
>> replacing all  content?
>>
>>
>> On Thu, Jul 22, 2010 at 6:56 AM, Martin Grigorov  
>> wrote:
>>> Anyone knows a URL where we can see such reload in action ?
>>> I can imagine it with Ajax reload but not with normal/full page reload.
>>>
>>> On Thu, Jul 22, 2010 at 12:47 AM, 7zark7 <7za...@gmail.com> wrote:
>>>
 Folks I think there is a valid usage here for mobile device apps which use
 animations between panels.  I've run into this myself.

 Granted a webapp is not native, but some clients do desire a close to
 native experience and this is a nice touch.

 Sent from my iPod

 On Jul 21, 2010, at 12:48 PM, James Carman 
 wrote:

 > If not, hit them with this...
 >
 > These are not the page switching animations you're looking for.  Move
 along.
 >
 > On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
 >> Ok thats a point.
 >>
 >> Thanks
 >> Per
 >>
 >> -
 >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 >> For additional commands, e-mail: users-h...@wicket.apache.org
 >>
 >>
 >
 > -
 > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 > For additional commands, e-mail: users-h...@wicket.apache.org
 >

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-22 Thread James Carman
You'd almost have to decorate every form submit and every link on the
page.  I don't know if you need AJAX for this, but you'd definitely
need some client-side JS.  The back button would probably cause some
troubles, though.

On Thu, Jul 22, 2010 at 3:49 PM, Anh <7za...@gmail.com> wrote:
> I personally don't have an example, but yes I think this would have to
> involve Ajax in some way.
>
> I have done similar in an app, but only for switching out the main
> panel.  E.g. I created a "setResponsePanel (...)" method in my page
> hierarchy.
>
> Perhaps this could be used to mimic a full page transition by
> replacing all  content?
>
>
> On Thu, Jul 22, 2010 at 6:56 AM, Martin Grigorov  wrote:
>> Anyone knows a URL where we can see such reload in action ?
>> I can imagine it with Ajax reload but not with normal/full page reload.
>>
>> On Thu, Jul 22, 2010 at 12:47 AM, 7zark7 <7za...@gmail.com> wrote:
>>
>>> Folks I think there is a valid usage here for mobile device apps which use
>>> animations between panels.  I've run into this myself.
>>>
>>> Granted a webapp is not native, but some clients do desire a close to
>>> native experience and this is a nice touch.
>>>
>>> Sent from my iPod
>>>
>>> On Jul 21, 2010, at 12:48 PM, James Carman 
>>> wrote:
>>>
>>> > If not, hit them with this...
>>> >
>>> > These are not the page switching animations you're looking for.  Move
>>> along.
>>> >
>>> > On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
>>> >> Ok thats a point.
>>> >>
>>> >> Thanks
>>> >> Per
>>> >>
>>> >> -
>>> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> >> For additional commands, e-mail: users-h...@wicket.apache.org
>>> >>
>>> >>
>>> >
>>> > -
>>> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> > For additional commands, e-mail: users-h...@wicket.apache.org
>>> >
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-22 Thread Anh
I personally don't have an example, but yes I think this would have to
involve Ajax in some way.

I have done similar in an app, but only for switching out the main
panel.  E.g. I created a "setResponsePanel (...)" method in my page
hierarchy.

Perhaps this could be used to mimic a full page transition by
replacing all  content?


On Thu, Jul 22, 2010 at 6:56 AM, Martin Grigorov  wrote:
> Anyone knows a URL where we can see such reload in action ?
> I can imagine it with Ajax reload but not with normal/full page reload.
>
> On Thu, Jul 22, 2010 at 12:47 AM, 7zark7 <7za...@gmail.com> wrote:
>
>> Folks I think there is a valid usage here for mobile device apps which use
>> animations between panels.  I've run into this myself.
>>
>> Granted a webapp is not native, but some clients do desire a close to
>> native experience and this is a nice touch.
>>
>> Sent from my iPod
>>
>> On Jul 21, 2010, at 12:48 PM, James Carman 
>> wrote:
>>
>> > If not, hit them with this...
>> >
>> > These are not the page switching animations you're looking for.  Move
>> along.
>> >
>> > On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
>> >> Ok thats a point.
>> >>
>> >> Thanks
>> >> Per
>> >>
>> >> -
>> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> >> For additional commands, e-mail: users-h...@wicket.apache.org
>> >>
>> >>
>> >
>> > -
>> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> > For additional commands, e-mail: users-h...@wicket.apache.org
>> >
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-22 Thread Martin Grigorov
Anyone knows a URL where we can see such reload in action ?
I can imagine it with Ajax reload but not with normal/full page reload.

On Thu, Jul 22, 2010 at 12:47 AM, 7zark7 <7za...@gmail.com> wrote:

> Folks I think there is a valid usage here for mobile device apps which use
> animations between panels.  I've run into this myself.
>
> Granted a webapp is not native, but some clients do desire a close to
> native experience and this is a nice touch.
>
> Sent from my iPod
>
> On Jul 21, 2010, at 12:48 PM, James Carman 
> wrote:
>
> > If not, hit them with this...
> >
> > These are not the page switching animations you're looking for.  Move
> along.
> >
> > On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
> >> Ok thats a point.
> >>
> >> Thanks
> >> Per
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Animated page switch possible?

2010-07-21 Thread 7zark7
Folks I think there is a valid usage here for mobile device apps which use 
animations between panels.  I've run into this myself.

Granted a webapp is not native, but some clients do desire a close to native 
experience and this is a nice touch.

Sent from my iPod

On Jul 21, 2010, at 12:48 PM, James Carman  wrote:

> If not, hit them with this...
> 
> These are not the page switching animations you're looking for.  Move along.
> 
> On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
>> Ok thats a point.
>> 
>> Thanks
>> Per
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>> 
>> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-21 Thread James Carman
If not, hit them with this...

These are not the page switching animations you're looking for.  Move along.

On Wed, Jul 21, 2010 at 3:38 PM, Per Newgro  wrote:
> Ok thats a point.
>
> Thanks
> Per
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-21 Thread Per Newgro

Ok thats a point.

Thanks
Per

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-21 Thread Martin Makundi
Just do it with static html. After few minutes of heavy use they will
probably decide otherwise.

**
Martin

2010/7/21 Per Newgro :
> They would like to see it in action. Then they decide.
>
> Per
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-21 Thread Per Newgro

They would like to see it in action. Then they decide.

Per

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Animated page switch possible?

2010-07-21 Thread Martin Makundi
Have you asked your users if they like it?

**
Martin

2010/7/21 Per Newgro :
> Hi *,
>
> has someone implemented an animation while switching pages with
> setResponsePage?
> I would like to use effects like scriptaculous.Effect.Grow or Shrink while
> switching pages.
>
> Cheers
> Per
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org