Tuesday, January 15, 2013

Enable/Disable Asp validators via Javascript..

Yes.. it is among the most fundamental functions of javascript but I admit that i didnt know about it. So i tend to share to those who sometime somewhere stands on my feet.

Ok, there is a function call ValidatorEnable(control, bool status).

This function enables/disables the validator control specified as parameter in the fucntion.

For Eg:
function ActivateValidator(Ctrl) {

      alert(Ctrl.value.length);
      if (Ctrl.value.length > 0) {
            var myValidator = document.getElementById('<%=rfvLowTier.ClientID %>');
            ValidatorEnable(myValidator, true);
}     Hope this helps!