I will need to update the color of the radio group(multi-color). Does this code work?
Appery('rdogrp').find("input").each(function() {
// $(this).addClass('riskRed');
// alert($(this).id);
// $(this).css({backgroundColor: '#E7F009'});
// Appery('rdotbn_6').css('font-size', 'x-small');
$(this).next('label').children('span').css('background-color', 'red');
$(this).checkboxradio("refresh");
});
I have tried all this, including adding a "background-color" "red" property for the 'more properties' area of each item of the 9 item radio group. No luck.