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

RadSliderItem Client Object?

1 Answer 53 Views
Slider
This is a migrated thread and some comments may be shown as answers.
cbospikes
Top achievements
Rank 1
cbospikes asked on 30 Jan 2009, 02:04 PM
Are there ways to grab the RadSliderItem on the client. 

I can get the value of the slider and use eventargs to get the value of the item, but don't see in the documentation any methods that allow me to work with the items directly.

Future release? Or am I missing something?

thanks

1 Answer, 1 is accepted

Sort by
0
cbospikes
Top achievements
Rank 1
answered on 30 Jan 2009, 02:25 PM
Never mind I did the following:

var sliRSId = item.findControl("rslider"); // <-- In radgriditem
var index = sliRSId.get_value();
var items = sliRSId.get_items();
var item = items[index];
alert(item.get_value()); // <--returns expected value


I don't see it in the online documentation.

Thanks
Tags
Slider
Asked by
cbospikes
Top achievements
Rank 1
Answers by
cbospikes
Top achievements
Rank 1
Share this question
or