Hello,
I'm trying to figure out how to disable a slider through the onChange
function. Here is what I have so far:

new Control.Slider( 'handle','slide r',
{
axis:'horizonta l',
sliderValue: 1,
range: $R(1, 100),
alignY:0,
values: [<?php echo $values ?>],
onSlide:functio n(v){
onSlide(v)
},
onChange:functi on(v){
onChange(v)
}
});

After...