In that case, add the following script to the source of one of the questions in that group (in the attached survey, I have added it to the source of the slider question):
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Initially disable the Next/Submit button if the slider has never been moved and the radio is unchecked
if($('.multinum-slider input[id^="answer"]').val() == '' && $('input.radio:checked').length == 0) {
$('#movesubmitbtn, #movenextbtn').attr('disabled', 'disabled');
}
var sliderChanged = '';
// Listener on the slider
$('.ui-slider').bind('slidechange', function(event, ui) {
sliderChanged = 1;
if($('input.radio:checked').length > 0) {
$('#movesubmitbtn, #movenextbtn').attr('disabled', '');
}
});
// Listener on the radio
$('input.radio').click(function(){
if(sliderChanged > 0) {
$('#movesubmitbtn, #movenextbtn').attr('disabled', '');
}
});
});
</script>