Deshabilitar validación de elementos input con css

amig@s.

Tengo un formulario donde está habilitada la validación de todos los elementos input. ¿Cómo podría deshabilitar la validación de algunos de esos elementos inputs del formulario que no quiero que se validen? ¿Cómo lo hago en el CSS? ¿Quizás es mejor a través de algún atributo en el propio elemento input? Gracias de antemano por dedicar a mi pregunta tu valioso tiempo. Un saludo a tod@s.

1 Respuesta

Respuesta
1

La validación de inputs no se hace por CSS, o bien se hace a nivel de cliente por javascript o bien lo hace el servidor como respuesta a un POST.

Entiendo que en tu caso lo está haciendo el javascript por lo que debería saber que framework estás usando para poder orientarte.

¿Es posible que facilites la URL de tu web para hacer pruebas sobre el terreno?

Buenas tardes. Aún no tengo la web subida. Voy a añadir el código JS que crea la función de validación. Querría dejar de aplicar esa función de validación sólo a algunos input concretos del formulario.

$(function() {
    /*
    number of fieldsets
    */
    var fieldsetCount = $('#formElem').children().length;
    /*
    current position of fieldset / navigation link
    */
    var current     = 1;
    /*
    sum and save the widths of each one of the fieldsets
    set the final sum as the total width of the steps element
    */
    var stepsWidth    = 0;
    var widths         = new Array();
    $('#steps .step').each(function(i){
        var $step         = $(this);
        widths[i]          = stepsWidth;
        stepsWidth         += $step.width();
    });
    $('#steps').width(stepsWidth);
    /*
    to avoid problems in IE, focus the first input of the form
    */
    $('#formElem').children(':first').find(':input:first').focus();    
    /*
    show the navigation bar
    */
    $('#navigation').show();
    /*
    when clicking on a navigation link 
    the form slides to the corresponding fieldset
    */
    $('#navigation a').bind('click',function(e){
        var $this    = $(this);
        var prev    = current;
        $this.closest('ul').find('li').removeClass('selected');
        $this.parent().addClass('selected');
        /*
        we store the position of the link
        in the current variable    
        */
        current = $this.parent().index() + 1;
        /*
        animate / slide to the next or to the corresponding
        fieldset. The order of the links in the navigation
        is the order of the fieldsets.
        Also, after sliding, we trigger the focus on the first 
        input element of the new fieldset
        If we clicked on the last link (confirmation), then we validate
        all the fieldsets, otherwise we validate the previous one
        before the form slided
        */
        $('#steps').stop().animate({
            marginLeft: '-' + widths[current-1] + 'px'
        },500,function(){
            if(current == fieldsetCount)
                validateSteps();
            else
                validateStep(prev);
            $('#formElem').children(':nth-child('+ parseInt(current) +')').find(':input:first').focus();    
        });
        e.preventDefault();
    });
    /*
    clicking on the tab (on the last input of each fieldset), makes the form
    slide to the next step
    */
    $('#formElem > fieldset').each(function(){
        var $fieldset = $(this);
        $fieldset.children(':last').find(':input').keydown(function(e){
            if (e.which == 9){
                $('#navigation li:nth-child(' + (parseInt(current)+1) + ') a').click();
                /* force the blur for validation */
                $(this).blur();
                e.preventDefault();
            }
        });
    });
    /*
    validates errors on all the fieldsets
    records if the Form has errors in $('#formElem').data()
    */
    function validateSteps(){
        var FormErrors = false;
        for(var i = 1; i < fieldsetCount; ++i){
            var error = validateStep(i);
            if(error == -1)
                FormErrors = true;
        }
        $('#formElem').data('errors',FormErrors);    
    }
    /*
    validates one fieldset
    and returns -1 if errors found, or 1 if not
    */
    function validateStep(step){
        if(step == fieldsetCount) return;
        var error = 1;
        var hasError = false;
        $('#formElem').children(':nth-child('+ parseInt(step) +')').find(':input:not(button)').each(function(){
            var $this         = $(this);
            var valueLength = jQuery.trim($this.val()).length;
            if(valueLength == ''){
                hasError = true;
                $this.css('background-color','#FFEDEF');
            }
            else
                $this.css('background-color','#FFFFFF');    
        });
        var $link = $('#navigation li:nth-child(' + parseInt(step) + ') a');
        $link.parent().find('.error,.checked').remove();
        var valclass = 'checked';
        if(hasError){
            error = -1;
            valclass = 'error';
        }
        $('<span class="'+valclass+'"></span>').insertAfter($link);
        return error;
    }
    /*
    if there are errors don't allow the user to submit
    */
    $('#registerButton').bind('click',function(){
        if($('#formElem').data('errors')){
            alert('Existen campos que no has completado');
            return false;
        }    
    });
});

El script actual valida todos los inputs que no sean botones del formulario con id formElem:

$('#formElem').children(':nth-child('+ parseInt(step) +')'). Find(':input:not(button)')

Para que no coja todos habría que agregar un atributo al input para que no lo incluya en el selector, por ejemplo, una clase de marcado como "js-not-validate".

Si agregas dicha clase al input que NO quieras que se valide tan solo tendrías que cambiar el selector a:

$('#formElem').children(':nth-child('+ parseInt(step) +')').find(':input:not(button):not(.js-not-validate)')

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas