Hi,
I've got my drop down lists working with border coloured validation using JQuery. Now that I am trying to do the same thing with RadComboBoxes I can't seem to get the relevant css classes. Below is how I am doing this to the drop down lists. How do I do the same with ComboBoxes?
Regards
Jon
I've got my drop down lists working with border coloured validation using JQuery. Now that I am trying to do the same thing with RadComboBoxes I can't seem to get the relevant css classes. Below is how I am doing this to the drop down lists. How do I do the same with ComboBoxes?
Regards
Jon
var $ = $telerik.$;var dropDown = dropDownTree.get_element();if (eventArgs.IsValid === false) { $(dropDown).find(".rddtInner").addClass("RadDropDownTreeFieldErrorHighlight");} else { $(dropDown).find(".rddtInner").removeClass("RadDropDownTreeFieldErrorHighlight");}