This is a migrated thread and some comments may be shown as answers.

Accessing Slider Min and Max Values

1 Answer 85 Views
Slider
This is a migrated thread and some comments may be shown as answers.
Himanshu Thakur
Top achievements
Rank 1
Himanshu Thakur asked on 26 Nov 2009, 10:38 PM
Hi,

I have a query regarding RADSlider, with the following control :

 

<telerik:RadSlider ID="SliderLivingArea" runat="server" Height="22px"

 

 

IsSelectionRangeEnabled="True" ItemType="Tick" LargeChange="10"

 

 

MaximumValue="50" MinimumValue="10" SelectionEnd="50" Skin="Black"

 

 

SlideStep="5" TrackPosition="TopLeft" Width="200px" >

 

 

</telerik:RadSlider>

Now in the scenario, where I need to access Minimum Value and Maximum Value ( Once the user changes the default minimum Value and Maximum Value to apply his own filters).

I am not able to fetch the user SelectionStart(which will be the new Minimum Value) and SelectionEnd (which will be new Maximum Value).

As I need to implement this on LINQ dynamic query, the selections are not been reflected onto the query on execution i.e on a ButtonClick where all the user selections should change the default data in the grid to the DATA(that needs to be based on User Filters Selections).

I have 4 different Sliders in the same page.

Any suggestions, regarding how to implement:

 

SliderLivingArea.MinmumValue=SliderLivingArea.SelectionStart;
SliderLivingArea.MaximumValue=SliderLivingArea.SelectionEnd;
.
.
.
var _query = from....
                     (SliverLivingArea.MinimumValue==SliderLivingArea.SelectionStart) && (q.LivingArea.???)

How to proceed on this situation.

Ideas..???

Thanks

 

1 Answer, 1 is accepted

Sort by
0
Himanshu Thakur
Top achievements
Rank 1
answered on 29 Nov 2009, 11:39 PM
Fixed Already!

Tags
Slider
Asked by
Himanshu Thakur
Top achievements
Rank 1
Answers by
Himanshu Thakur
Top achievements
Rank 1
Share this question
or