IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

Fvalidator et soumission de formulaire


Sujet :

JavaScript

  1. #1
    Membre habitué
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    550
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 550
    Points : 193
    Points
    193
    Par défaut Fvalidator et soumission de formulaire
    Bonjour.

    Fvalidator (http://zend.lojcomm.com.br/fValidator/) est un petit script pour mootools permettant de détecter si les champs obligatoire sont remplis ou pas.

    Cependant j'aimerai que tant que les données obligatoires n'ont pas été remplies on ne puisse pas soumettre le formulaire et donc ne pas aller sur la page.php action de mon <form id="xxx" action="page.php" ...>

    Cordialement

  2. #2
    Expert éminent sénior

    Homme Profil pro
    Inscrit en
    Janvier 2007
    Messages
    13 474
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2007
    Messages : 13 474
    Points : 36 571
    Points
    36 571
    Par défaut
    Bonjour,
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <form id="xxx" action="page.php" onsubmit="return Verif();">
    Ta fonction Verif() doit retourner true ou false en fonction du résultat du contrôle ...

    A+

  3. #3
    Membre habitué
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    550
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 550
    Points : 193
    Points
    193
    Par défaut
    Citation Envoyé par E.Bzz
    Bonjour,
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <form id="xxx" action="page.php" onsubmit="return Verif();">
    Ta fonction Verif() doit retourner true ou false en fonction du résultat du contrôle ...

    J'ai mis le.js au cas ou.
    Merci

    A+
    Jusque la j'avais compris.
    Mais je pense que cela doit être prevu dans le .js mais je ne trouve pas.
    Le javascript et moi ....

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    /* ************************************************************************************* *\
     * The MIT License
     * Copyright (c) 2007 Fabio Zendhi Nagao - http://zend.lojcomm.com.br
     * 
     * Permission is hereby granted, free of charge, to any person obtaining a copy of this
     * software and associated documentation files (the "Software"), to deal in the Software
     * without restriction, including without limitation the rights to use, copy, modify,
     * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
     * permit persons to whom the Software is furnished to do so, subject to the following
     * conditions:
     * 
     * The above copyright notice and this permission notice shall be included in all copies
     * or substantial portions of the Software.
     * 
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
     * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
     * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
     * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
     * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
     * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     * 
    \* ************************************************************************************* */
     
    var fValidator = new Class({
    	options: {
    		msgContainerTag: "div",
    		msgClass: "fValidator-msg",
     
    		styleNeutral: {"background-color": "#fff", "border-color": "#89bbd5"},
    		styleInvalid: {"background-color": "#fcc", "border-color": "#89bbd5"},
    		styleValid: {"background-color": "#cfc", "border-color": "#89bbd5"},
     
    		required: {type: "required", re: /[^.*]/, msg: "Champs requis."},
    		alpha: {type: "alpha", re: /^[a-z ._-]+$/i, msg: "This field accepts alphabetic characters only."},
    		alphanum: {type: "alphanum", re: /^[a-z0-9 ._-]+$/i, msg: "This field accepts alphanumeric characters only."},
    		integer: {type: "integer", re: /^[-+]?\d+$/, msg: "Please enter a valid integer."},
    		real: {type: "real", re: /^[-+]?\d*\.?\d+$/, msg: "Please enter a valid number."},
    		date: {type: "date", re: /^((((0[13578])|([13578])|(1[02]))[\/](([1-9])|([0-2][0-9])|(3[01])))|(((0[469])|([469])|(11))[\/](([1-9])|([0-2][0-9])|(30)))|((2|02)[\/](([1-9])|([0-2][0-9]))))[\/]\d{4}$|^\d{4}$/, msg: "Please enter a valid date (mm/dd/yyyy)."},
    		email: {type: "email", re: /^[a-z0-9._%-]+@[a-z0-9.-]+\.[a-z]{2,4}$/i, msg: "Entrez un email valide."},
    		phone: {type: "phone", re: /^[\d\s ().-]+$/, msg: "Please enter a valid phone."},
    		url: {type: "url", re: /^(http|https|ftp)\:\/\/[a-z0-9\-\.]+\.[a-z]{2,3}(:[a-z0-9]*)?\/?([a-z0-9\-\._\?\,\'\/\\\+&amp;%\$#\=~])*$/i, msg: "Please enter a valid url."},
    		confirm: {type: "confirm", msg: "Confirm Password does not match original Password."},
     
    		onValid: Class.empty,
    		onInvalid: Class.empty
    	},
     
    	initialize: function(form, options) {
    		this.form = $(form);
    		this.setOptions(options);
     
    		this.fields = this.form.getElements("*[class^=fValidate]");
    		this.validations = [];
     
    		this.fields.each(function(element) {
    			if(!this._isChildType(element)) element.setStyles(this.options.styleNeutral);
    			element.cbErr = 0;
    			var classes = element.getProperty("class").split(' ');
    			classes.each(function(klass) {
    				if(klass.match(/^fValidate(\[.+\])$/)) {
    					var aFilters = eval(klass.match(/^fValidate(\[.+\])$/)[1]);
    					for(var i = 0; i < aFilters.length; i++) {
    						if(this.options[aFilters[i]]) this.register(element, this.options[aFilters[i]]);
    						if(aFilters[i].charAt(0) == '=') this.register(element, $extend(this.options.confirm, {idField: aFilters[i].substr(1)}));
    					}
    				}
    			}.bind(this));
    		}.bind(this));
     
    		this.form.addEvents({
    			"submit": this._onSubmit.bind(this),
    			"reset": this._onReset.bind(this)
    		});
    	},
     
    	register: function(field, options) {
    		field = $(field);
    		this.validations.push([field, options]);
    		field.addEvent("blur", function() {
    			this._validate(field, options);
    		}.bind(this));
    	},
     
    	_isChildType: function(el) {
    		var elType = el.type.toLowerCase();
    		if((elType == "radio") || (elType == "checkbox")) return true;
    		return false;
    	},
     
    	_validate: function(field, options) {
    		switch(options.type) {
    			case "confirm":
    				if($(options.idField).getValue() == field.getValue()) this._msgRemove(field, options);
    				else this._msgInject(field, options);
    				break;
    			default:
    				if(options.re.test(field.getValue())) this._msgRemove(field, options);
    				else this._msgInject(field, options);
    		}
    	},
     
    	_validateChild: function(child, options) {
    		var nlButtonGroup = this.form[child.getProperty("name")];
    		var cbCheckeds = 0;
    		var isValid = true;
     		for(var i = 0; i < nlButtonGroup.length; i++) {
    			if(nlButtonGroup[i].checked) {
    				cbCheckeds++;
    				if(!options.re.test(nlButtonGroup[i].getValue())) {
    					isValid = false;
    					break;
    				}
    			}
    		}
    		if(cbCheckeds == 0 && options.type == "required") isValid = false;
    		if(isValid) this._msgRemove(child, options);
    		else this._msgInject(child, options);
    	},
     
    	_msgInject: function(owner, options) {
    		if(!$(owner.getProperty("id") + options.type +"_msg")) {
    			var msgContainer = new Element(this.options.msgContainerTag, {"id": owner.getProperty("id") + options.type +"_msg", "class": this.options.msgClass})
    				.setHTML(options.msg)
    				.setStyle("opacity", 0)
    				.injectAfter(owner)
    				.effect("opacity", {
    					duration: 500,
    					transition: Fx.Transitions.linear
    				}).start(0, 1);
    			owner.cbErr++;
    			this._chkStatus(owner, options);
    		}
    	},
     
    	_msgRemove: function(owner, options, isReset) {
    		isReset = isReset || false;
    		if($(owner.getProperty("id") + options.type +"_msg")) {
    			var el = $(owner.getProperty("id") + options.type +"_msg");
    			el.effect("opacity", {
    				duration: 500,
    				transition: Fx.Transitions.linear,
    				onComplete: function() {el.remove()}
    			}).start(1, 0);
    			if(!isReset) {
    				owner.cbErr--;
    				this._chkStatus(owner, options);
    			}
    		}
    	},
     
    	_chkStatus: function(field, options) {
    		if(field.cbErr == 0) {
    			field.effects({duration: 500, transition: Fx.Transitions.linear}).start(this.options.styleValid);
    			this.fireEvent("onValid", [field, options], 50);
    		} else {
    			field.effects({duration: 500, transition: Fx.Transitions.linear}).start(this.options.styleInvalid);
    			this.fireEvent("onInvalid", [field, options], 50);
    		}
    	},
     
    	_onSubmit: function(event) {
    		event = new Event(event);
    		var isValid = true;
     
    		this.validations.each(function(array) {
    			if(this._isChildType(array[0])) this._validateChild(array[0], array[1]);
    			else this._validate(array[0], array[1]);
    			if(array[0].cbErr > 0) isValid = false;
    		}.bind(this));
     
    		if(!isValid) event.stop();
    		return isValid;
    	},
     
    	_onReset: function() {
    		this.validations.each(function(array) {
    			if(!this._isChildType(array[0])) array[0].setStyles(this.options.styleNeutral);
    			array[0].cbErr = 0;
    			this._msgRemove(array[0], array[1], true);
    		}.bind(this));
    	}
    });
    fValidator.implement(new Events); // Implements addEvent(type, fn), fireEvent(type, [args], delay) and removeEvent(type, fn)
    fValidator.implement(new Options);// Implements setOptions(defaults, options)

  4. #4
    Expert éminent sénior

    Homme Profil pro
    Inscrit en
    Janvier 2007
    Messages
    13 474
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2007
    Messages : 13 474
    Points : 36 571
    Points
    36 571
    Par défaut
    Citation Envoyé par masseur
    Mais je pense que cela doit être prevu dans le .js mais je ne trouve pas.
    Effectivement soi-disant gérer en dynamique :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    	_onSubmit: function(event) {
    		event = new Event(event);
    		var isValid = true;
     
    		this.validations.each(function(array) {
    			if(this._isChildType(array[0])) this._validateChild(array[0], array[1]);
    			else this._validate(array[0], array[1]);
    			if(array[0].cbErr > 0) isValid = false;
    		}.bind(this));
     
    		if(!isValid) event.stop();
    		return isValid;
    	},
    Tel qu'écrit, tu n'es pas censé ajouter l'évènement dans le tag (le script le fait ... enfin ... devrait).

    Bref : RTFM

    A+

  5. #5
    Membre habitué
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    550
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 550
    Points : 193
    Points
    193
    Par défaut
    Rha !!!!!

    Etrange alors!!!!

  6. #6
    Membre habitué
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    550
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 550
    Points : 193
    Points
    193
    Par défaut
    SI je rajoute celadans la balise <form ... onSubmit="return false" >
    Pourquoi le formulaire se soumet quand même?

  7. #7
    Membre habitué
    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    550
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 550
    Points : 193
    Points
    193
    Par défaut
    Effectivement le onsubmit est géré.
    Mon problème vient d'un autre code javascript qui doit interférer.

  8. #8
    Expert éminent sénior

    Homme Profil pro
    Inscrit en
    Janvier 2007
    Messages
    13 474
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2007
    Messages : 13 474
    Points : 36 571
    Points
    36 571
    Par défaut
    Citation Envoyé par masseur
    SI je rajoute celadans la balise <form ... onSubmit="return false" >
    Pourquoi le formulaire se soumet quand même?
    Je pense que l'évènement dans le tag est écrasé par celui "géré" en dynamique ...

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Soumission de formulaire - insérer dans l'URL
    Par TSalm dans le forum Struts 1
    Réponses: 6
    Dernier message: 06/03/2007, 18h51
  2. soumission de formulaire
    Par Grodan dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 05/01/2007, 17h10
  3. soumission de formulaire : problème ..
    Par questionneuse dans le forum Général JavaScript
    Réponses: 8
    Dernier message: 05/06/2006, 20h14
  4. Confirm sur une soumission de formulaire
    Par ephemere2 dans le forum Général JavaScript
    Réponses: 2
    Dernier message: 21/04/2006, 09h59
  5. double click pour soumission de formulaires
    Par pram dans le forum XMLRAD
    Réponses: 2
    Dernier message: 16/11/2005, 13h32

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo