Question regarding wiquery Rangeslider

2011-11-10 Thread odin568
Hi, I want to implement Sliders into my Wicket Project. This works fine with the example shown here: http://wiquery-examples-1-1-x.appspot.com/?wicket:bookmarkablePage=wicket-1:org.odlabs.wiquery.examples.slider.SliderPage Now I want to implement Range sliders. So i don't need only the Value of t

Re: Question regarding wiquery Rangeslider

2011-11-10 Thread odin568
Thanks. The problem is - Only normal Sliders are described in the Wiki - no SliderRange. I didn't find any Infos anywhere, that's why I post here hoping someone could help me... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Question-regarding-wiquery-Rangeslider-tp40

Re: Question regarding wiquery Rangeslider

2011-11-14 Thread odin568
I finally found a solution. You were right - it's much easier by using AjaxSlider instead of normal slider. Here is the code: AjaxSlider slider = new AjaxSlider("slider", 0, 100); slider.setRange(new SliderRange(true));

Re: Question regarding wiquery Rangeslider

2011-11-14 Thread odin568
Sorry, I think you missunderstood me: Yes, with this constructor, I set the min and max of the Slider. But I meant to set the values of the range manually. i.e. I create a range slider from 0 to 100. Then I want to set the two positions 10 and 90 as start for the Range. Thanks! -- View this mes

Re: Question regarding wiquery Rangeslider

2011-11-14 Thread odin568
Hi, no, this sets the complete range of the slider as in the constructor (in my example 0 and 100). Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Question-regarding-wiquery-Rangeslider-tp4025737p4039247.html Sent from the Users forum mailing list archive at

Re: Question regarding wiquery Rangeslider

2011-11-14 Thread odin568
Ok thanks. But I have one problem implementing this: setValues needs parameter of type ArrayItemOptions How do I put my int's into this type?? Don't know how to handle that :-S sorry Thanks! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Question-regarding-wiquery