Re: What is the best slideshow?

2010-09-12 Thread danisevsky
I'm using visural wikcet:
http://visural-wicket-examples.appspot.com/app/fancybox and I'm very
satisfied.

2010/9/11 Paolo :
> I found this:
>
> http://lazydev.ildella.net/wicket-slides-080-released-with-smoothgallery
>
> Is it the best solution to show a sequence of image?
>
> I don't like to use flash. And this use javascript, so it may be OK.
>
> thank you.
>
> -
> 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: What is the best slideshow?

2010-09-11 Thread Daniel Frisk
I really like Exposure that a friend of mine has made. There is no Wicket 
wrapper for it (yet) but you can easily integrate it yourself.

http://exposureforjquery.wordpress.com/

// Daniel


On 11 sep 2010, at 13:27, Paolo wrote:

> I found this:
> 
> http://lazydev.ildella.net/wicket-slides-080-released-with-smoothgallery
> 
> Is it the best solution to show a sequence of image?
> 
> I don't like to use flash. And this use javascript, so it may be OK.
> 
> thank you.
> 
> -
> 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



What is the best slideshow?

2010-09-11 Thread Paolo
I found this:

http://lazydev.ildella.net/wicket-slides-080-released-with-smoothgallery

Is it the best solution to show a sequence of image?

I don't like to use flash. And this use javascript, so it may be OK.

thank you.

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



Voting in Slideshow

2009-07-09 Thread Johannes Schneider
Hi,

at the moment I implement some sort of slideshow.

I am using a IndexedParamUrlCodingStrategy to get nice URLs.
Now I want to add a voting form on each page. But of course commiting
the form results in a url containing many internal Wicket stuff.

How can that be avoided?
I tried the following that solved my issue but seems to be a little bit
hacky...

in my Form#submit I added the following lines:

  Page responsePage = getRequestCycle().getResponsePage();
  getRequestCycle().setResponsePage( responsePage.getClass(),
responsePage.getPageParameters() );



I hope you understand what I try to achieve. Any ideas how to do that
properly?


Thanks,

Johannes

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



Re: Slideshow

2009-07-06 Thread nino martinez wael
Replying inline..

2009/7/4 Daniele Dellafiore :
> yep, that was my idea too even if this force me to introduce
> supplementary navigations link outside the Slideshow. This may result
> confusing for the user and they will not be as cool as normal
> smoothgallery controls.
No this is not what I meant, I meant that you should integrate with
ajax.. So for example if you have a max of 100 img loaded at one time,
when the user scrolls near image number 80 or so, then request some
more images.. so it should be seamless and not visible to the user..
So thats what I meant. You can use normal pagination for this.. It's
just a matter of integrating with ajax, and if SmoothGallery supports
something like this.
>
> Anyway, is a cheap and effective solution so probably I go with this,
> and I Will try to have a look in the SG forum for people having this
> issue.
>
> On Fri, Jul 3, 2009 at 2:05 PM, nino martinez
> wael wrote:
>> just make an ajax version and use normal pagination..?
>>
>> 2009/7/2 Daniele Dellafiore :
>>> On Mon, Jun 29, 2009 at 2:20 PM, Johannes
>>> Schneider wrote:
>>>> Thanks for that hint.
>>>> Do you know how many images wicket-slides/SmoothGallery support? I will
>>>> have galleries with thousands of pictures...
>>>
>>> I do not know how many images it supports but I remember it was quite
>>> slow to load one hundred images.
>>> Anyway, send all images to the client in one shot doesn't sound
>>> reasonable to me.
>>>
>>> I am addressing this issue in the next weeks, if you have some ideas
>>> we should start talking about some possible implementation.
>>>
>>> --
>>> Daniele Dellafiore
>>> http://blog.ildella.net
>>> http://twitter.com/ildella
>>>
>>> -
>>> 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
>>
>>
>
>
>
> --
> Daniele Dellafiore
> http://blog.ildella.net
> http://twitter.com/ildella
>
> -
> 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: Slideshow

2009-07-04 Thread Daniele Dellafiore
yep, that was my idea too even if this force me to introduce
supplementary navigations link outside the Slideshow. This may result
confusing for the user and they will not be as cool as normal
smoothgallery controls.

Anyway, is a cheap and effective solution so probably I go with this,
and I Will try to have a look in the SG forum for people having this
issue.

On Fri, Jul 3, 2009 at 2:05 PM, nino martinez
wael wrote:
> just make an ajax version and use normal pagination..?
>
> 2009/7/2 Daniele Dellafiore :
>> On Mon, Jun 29, 2009 at 2:20 PM, Johannes
>> Schneider wrote:
>>> Thanks for that hint.
>>> Do you know how many images wicket-slides/SmoothGallery support? I will
>>> have galleries with thousands of pictures...
>>
>> I do not know how many images it supports but I remember it was quite
>> slow to load one hundred images.
>> Anyway, send all images to the client in one shot doesn't sound
>> reasonable to me.
>>
>> I am addressing this issue in the next weeks, if you have some ideas
>> we should start talking about some possible implementation.
>>
>> --
>> Daniele Dellafiore
>> http://blog.ildella.net
>> http://twitter.com/ildella
>>
>> -
>> 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
>
>



-- 
Daniele Dellafiore
http://blog.ildella.net
http://twitter.com/ildella

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



Re: Slideshow

2009-07-03 Thread nino martinez wael
just make an ajax version and use normal pagination..?

2009/7/2 Daniele Dellafiore :
> On Mon, Jun 29, 2009 at 2:20 PM, Johannes
> Schneider wrote:
>> Thanks for that hint.
>> Do you know how many images wicket-slides/SmoothGallery support? I will
>> have galleries with thousands of pictures...
>
> I do not know how many images it supports but I remember it was quite
> slow to load one hundred images.
> Anyway, send all images to the client in one shot doesn't sound
> reasonable to me.
>
> I am addressing this issue in the next weeks, if you have some ideas
> we should start talking about some possible implementation.
>
> --
> Daniele Dellafiore
> http://blog.ildella.net
> http://twitter.com/ildella
>
> -
> 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: Slideshow

2009-07-02 Thread Daniele Dellafiore
On Mon, Jun 29, 2009 at 2:20 PM, Johannes
Schneider wrote:
> Thanks for that hint.
> Do you know how many images wicket-slides/SmoothGallery support? I will
> have galleries with thousands of pictures...

I do not know how many images it supports but I remember it was quite
slow to load one hundred images.
Anyway, send all images to the client in one shot doesn't sound
reasonable to me.

I am addressing this issue in the next weeks, if you have some ideas
we should start talking about some possible implementation.

-- 
Daniele Dellafiore
http://blog.ildella.net
http://twitter.com/ildella

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



Re: Slideshow

2009-07-01 Thread francisco treacy
I think you should ask this at the SmoothGallery forum, as this
concern is on the JavaScript side.

Francisco

2009/6/29 Johannes Schneider :
> Thanks for that hint.
> Do you know how many images wicket-slides/SmoothGallery support? I will
> have galleries with thousands of pictures...
>
>
> Regards,
>
> Johannes
>
> francisco treacy wrote:
>> Once you have your images sorted you may want to have a look at:
>>
>> http://code.google.com/p/wicket-slides/
>>
>> or perhaps there is a jQuery slideshow plugin that you could use with
>> the newer Wicket-jQuery integrations.
>>
>> Francisco
>>
>>
>>
>> 2009/6/27 Johannes Schneider :
>>> Hi,
>>>
>>> I want to implement a slide show with wicket.
>>> I have many images on the local hard disk - but they are unordered.
>>>
>>> Now I want to create a slide show that shows those images sorted.
>>>
>>>
>>> I started this way:
>>>
>>> Created a page with an  and added that markup there:
>>>
>>> add( new Image( "image", new WebResource() {
>>> //access the file on the hd
>>> }
>>>
>>> Is this the best way? Or am I missing something?
>>>
>>>
>>> Of course I'd like to change the image(s) using AJAX. Could anyone give
>>> me a hint/link where I should continue to search...
>>>
>>>
>>>
>>> Thanks,
>>>
>>> Johannes
>>>
>>> -
>>> 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: Slideshow

2009-06-29 Thread Johannes Schneider
Thanks for that hint.
Do you know how many images wicket-slides/SmoothGallery support? I will
have galleries with thousands of pictures...


Regards,

Johannes

francisco treacy wrote:
> Once you have your images sorted you may want to have a look at:
> 
> http://code.google.com/p/wicket-slides/
> 
> or perhaps there is a jQuery slideshow plugin that you could use with
> the newer Wicket-jQuery integrations.
> 
> Francisco
> 
> 
> 
> 2009/6/27 Johannes Schneider :
>> Hi,
>>
>> I want to implement a slide show with wicket.
>> I have many images on the local hard disk - but they are unordered.
>>
>> Now I want to create a slide show that shows those images sorted.
>>
>>
>> I started this way:
>>
>> Created a page with an  and added that markup there:
>>
>> add( new Image( "image", new WebResource() {
>> //access the file on the hd
>> }
>>
>> Is this the best way? Or am I missing something?
>>
>>
>> Of course I'd like to change the image(s) using AJAX. Could anyone give
>> me a hint/link where I should continue to search...
>>
>>
>>
>> Thanks,
>>
>> Johannes
>>
>> -
>> 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: Slideshow

2009-06-28 Thread francisco treacy
Once you have your images sorted you may want to have a look at:

http://code.google.com/p/wicket-slides/

or perhaps there is a jQuery slideshow plugin that you could use with
the newer Wicket-jQuery integrations.

Francisco



2009/6/27 Johannes Schneider :
> Hi,
>
> I want to implement a slide show with wicket.
> I have many images on the local hard disk - but they are unordered.
>
> Now I want to create a slide show that shows those images sorted.
>
>
> I started this way:
>
> Created a page with an  and added that markup there:
>
> add( new Image( "image", new WebResource() {
> //access the file on the hd
> }
>
> Is this the best way? Or am I missing something?
>
>
> Of course I'd like to change the image(s) using AJAX. Could anyone give
> me a hint/link where I should continue to search...
>
>
>
> Thanks,
>
> Johannes
>
> -
> 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: Slideshow

2009-06-27 Thread Jeremy Thomerson
First, you need to create a model that will create an imagelist...

class FileListModel extends AbstractReadOnlyModel> {
  List getObject() {
// put logic here that creates the list and sorts them
  }
}

Then, you need to use an ajaxupdatingtimer that will replace your
image every X seconds with the next image from the list.

--
Jeremy Thomerson
http://www.wickettraining.com




On Sat, Jun 27, 2009 at 3:34 PM, Johannes
Schneider wrote:
> Hi,
>
> I want to implement a slide show with wicket.
> I have many images on the local hard disk - but they are unordered.
>
> Now I want to create a slide show that shows those images sorted.
>
>
> I started this way:
>
> Created a page with an  and added that markup there:
>
> add( new Image( "image", new WebResource() {
> //access the file on the hd
> }
>
> Is this the best way? Or am I missing something?
>
>
> Of course I'd like to change the image(s) using AJAX. Could anyone give
> me a hint/link where I should continue to search...
>
>
>
> Thanks,
>
> Johannes
>
> -
> 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



Slideshow

2009-06-27 Thread Johannes Schneider
Hi,

I want to implement a slide show with wicket.
I have many images on the local hard disk - but they are unordered.

Now I want to create a slide show that shows those images sorted.


I started this way:

Created a page with an  and added that markup there:

add( new Image( "image", new WebResource() {
//access the file on the hd
}

Is this the best way? Or am I missing something?


Of course I'd like to change the image(s) using AJAX. Could anyone give
me a hint/link where I should continue to search...



Thanks,

Johannes

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