-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap-validate.js
449 lines (420 loc) · 12.4 KB
/
bootstrap-validate.js
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
var _genMsg = $('#genMsg');
function subCommonForm(frmVal, valsection){
var setBool = "1";
var fTEle = null;
var fSEle = null;
var arVal = null;
var errMsg = null;
var errorElement = null;
_genMsg.hide();
for (var i = 0; i < document.forms[frmVal].elements.length; i++){
var _currentFormElement = document.forms[frmVal].elements[i]; //cache for Form Element (Html Form)
if((_currentFormElement.getAttribute("req")=="true" || _currentFormElement.getAttribute("req")=="valid") && !_currentFormElement.disabled && _currentFormElement.getAttribute("valsection")==valsection){
var currentElement = $(document.forms[frmVal].elements[i]); //cache for Current Form Element
var _controlDiv = currentElement.parent().parent(); //cache for Control Div
var _helpElement = currentElement.next(); //cache for Help Span
if (_currentFormElement.type == "text" || _currentFormElement.type == "password") {
var cntValue = new String(_currentFormElement.value);
_currentFormElement.value = stringTrim(cntValue);
if(stringTrim(cntValue) != ""){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
errMsg = 'Please enter ' + _helpElement.html();
}
setBool = "0";
}
}if (_currentFormElement.type == "hidden") {
if(_currentFormElement.value != ""){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
errMsg = currentElement.attr("errmsg");
}
setBool = "0";
}
}else if (_currentFormElement.type == "select-one") {
var selOptValue = new String(_currentFormElement.value);
if(selOptValue != '0' && selOptValue.length != 0){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
errMsg = 'Please select ' + _helpElement.html();
}
setBool = "0";
}
}else if (_currentFormElement.type == "select-multiple") {
var isMulti = _currentFormElement.getAttribute("multiple");
if(isMulti){
if(_currentFormElement.length>0){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
}
setBool = "0";
}
}
}else if (_currentFormElement.type == "textarea") {
if(_currentFormElement.value != ""){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
errMsg = 'Please enter ' + _helpElement.html();
}
setBool = "0";
}
}else if (_currentFormElement.type == "radio") {
if(_currentFormElement.value != ""){
_controlDiv.removeClass('error');
}else{
if(fTEle==null){
fTEle=i;
}
setBool = "0";
}
}
}
}
if(setBool == "0"){
if(fTEle!=null){
if (document.forms[frmVal].elements[fTEle].type != "hidden") {
document.forms[frmVal].elements[fTEle].focus();
errorElement = $(document.forms[frmVal].elements[fTEle]);
errorElement.parent().parent().addClass('error');
}
if(errMsg==null || errMsg==''){
_genMsg.html("Please fill all required Fields.");
_genMsg.fadeIn('slow');
}else{
_genMsg.html(errMsg);
_genMsg.fadeIn('slow');
errMsg='';
}
return false;
}
if(AllValidData(frmVal)){
return true;
}else{
return false;
}
}else{
if(AllValidData(frmVal)){
return true;
}else{
return false;
}
}
}
function AllValidData(frmVal){
var strError = "";
_genMsg.html(" ");
for (var i = 0; i < document.forms[frmVal].elements.length; i++){
var iEle = document.forms[frmVal].elements[i];
var currentElement = $(iEle);
var swCase = currentElement.attr("valdata");
var minLen = currentElement.attr("minlen");
var _controlDiv = currentElement.parent().parent(); //cache for Control Div
_controlDiv.removeClass('error');
if(!isNaN(minLen)){
if(iEle.value.length < minLen){
if(!strError || strError.length ==0) {
strError = "Field should have atleast "+minLen+" charactors";
}
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
}
if(swCase!=null && !iEle.disabled && iEle!=null){
switch(swCase){
case "alnum":
case "alphanumeric": {
var charpos = iEle.value.search("[^A-Za-z0-9 ]");
if(iEle.value.length > 0 && charpos >= 0) {
if(!strError || strError.length ==0) {
strError = " Only alpha-numeric characters allowed ";
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
break;
}//case alphanumeric
case "num":
case "numeric": {
var charpos = iEle.value.search("[^0-9]");
if(iEle.value.length > 0 && charpos >= 0) {
if(!strError || strError.length ==0) {
strError = " Only digits allowed ";
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//numeric
case "float": {
var charpos = iEle.value.search("[^0-9 .]");
if(isNaN(iEle.value)){
if(!strError || strError.length ==0) {
strError = " Only float values allowed ";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
if(iEle.value.length > 0 && charpos >= 0) {
if(!strError || strError.length ==0) {
strError = " Only float values allowed ";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//Float
case "per":
case "percent": {
var charpos = iEle.value.search("[^0-9 .]");
if(isNaN(iEle.value)){
if(!strError || strError.length ==0) {
strError = " Only digits allowed ";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
if(iEle.value.length > 0 && charpos >= 0) {
if(!strError || strError.length ==0) {
strError = " Only digits allowed ";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
if(parseInt(iEle.value)>100){
strError = "Percentage value can not exceed 100";
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
break;
}//Percentage
case "alphabetic":
case "alpha": {
var controlValue = new String(iEle.value);
var charpos = iEle.value.search("[^A-Za-z\ ]");
if(iEle.value.length > 0 && charpos >= 0) {
if(!strError || strError.length ==0) {
strError = " Only alphabetic characters allowed ";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
if(controlValue.charAt(0)==' '){
if(!strError || strError.length ==0) {
strError = "Leading spaces are not allowed.";
}//if
_genMsg.html(strError);// + "" + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//alpha
case "alnumhyphen":{
var charpos = iEle.value.search("[^A-Za-z0-9\-_\]");
if(iEle.value.length > 0 && charpos >= 0){
if(!strError || strError.length ==0) {
strError = " characters allowed are A-Z,a-z,0-9,- and _";
}//if
_genMsg.html(strError);// + " " + eval(charpos+1)+"]";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}
case "email": {
if(!validateEmailv2(iEle.value)) {
if(!strError || strError.length ==0) {
strError = " Enter a valid Email address ";
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//case email
case "lt":
case "lessthan": {
if(isNaN(iEle.value)) {
_genMsg.innerHTML = " Should be a number ";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
if(eval(iEle.value) >= eval(cmdvalue)) {
if(!strError || strError.length ==0) {
strError = " value should be less than "+ cmdvalue;
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//case lessthan
case "gt":
case "greaterthan": {
if(isNaN(iEle.value)) {
_genMsg.innerHTML = " Should be a number ";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
if(eval(iEle.value) <= eval(cmdvalue)) {
if(!strError || strError.length ==0) {
strError = " value should be greater than "+ cmdvalue;
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
break;
}//case greaterthan
case "regexp":{
if(iEle.value.length > 0){
if(!iEle.value.match(cmdvalue)){
if(!strError || strError.length ==0){
strError = " Invalid characters found ";
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}//if
}
break;
}//case regexp
case "dontselect": {
if(iEle.selectedIndex == null) {
_genMsg.innerHTML = "BUG: dontselect command for non-select Item";
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
if(iEle.selectedIndex == eval(cmdvalue)) {
if(!strError || strError.length ==0) {
strError = " Please Select one option ";
}//if
_genMsg.html(strError);
_controlDiv.addClass('error');
_genMsg.fadeIn();
iEle.focus();
return false;
}
break;
}//case Date
case "date": {
if(iEle.value.length < 8) {
_controlDiv.addClass('error');
strError = " Invalid Date.";
_genMsg.html(strError);
iEle.focus();
return false;
}else{
if(iEle.value.indexOf('/') < 0) {
_controlDiv.addClass('error');
strError = " Invalid Date.";
_genMsg.html(strError);
_genMsg.fadeIn();
iEle.focus();
return false;
}else{
if(iEle.value.indexOf('/') < 0) {
strError = " Invalid Date.";
_controlDiv.addClass('error');
_genMsg.html(strError);
_genMsg.fadeIn();
iEle.focus();
return false;
}
}
}
break;
}//case Date
}//switch
}
}
return true;
}
function validateEmailv2(email){
if(email.length <= 0){
return true;
}
var splitted = email.match("^(.+)@(.+)$");
if(splitted == null) return false;
if(splitted[1] != null ){
var regexp_user=/^\"?[\w-_\.]*\"?$/;
if(splitted[1].match(regexp_user) == null) return false;
}
if(splitted[2] != null){
var regexp_domain=/^[\w-\.]*\.[A-Za-z]{2,4}$/;
if(splitted[2].match(regexp_domain) == null) {
var regexp_ip =/^\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\]$/;
if(splitted[2].match(regexp_ip) == null) return false;
}// if
return true;
}
return false;
}
function validateDate(txtDate, errmsg){
re = /^\d{1,2}\/\d{1,2}\/\d{4}$/;
_genMsg.html('');
if(txtDate.value != '' && !txtDate.value.match(re)) {
_genMsg.innerHTML = errmsg;
txtDate.value = '';
txtDate.focus();
return false;
}
return true;
}
function stringTrim(stringToTrim) {
return stringToTrim.replace(/^\s+|\s+$/g,"");
}