-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathvalidator.js
More file actions
executable file
·164 lines (128 loc) · 2.99 KB
/
Copy pathvalidator.js
File metadata and controls
executable file
·164 lines (128 loc) · 2.99 KB
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
/*
* CATS
* Companies Form Validation
*
* Copyright (C) 2005 - 2007 Cognizo Technologies, Inc.
* All rights reserved.
*
* $Id: validator.js 1887 2007-02-20 05:17:10Z will $
*/
function checkAddForm(form)
{
var errorMessage = '';
errorMessage += checkName();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkEditForm(form)
{
var errorMessage = '';
errorMessage += checkName();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkAttachmentForm(form)
{
var errorMessage = '';
errorMessage += checkFilename();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkSearchByNameForm(form)
{
var errorMessage = '';
errorMessage += checkSearchName();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkSearchByKeyTechnologiesForm(form)
{
var errorMessage = '';
errorMessage += checkSearchKeyTechnologies();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkName()
{
var errorMessage = '';
fieldValue = document.getElementById('name').value;
fieldLabel = document.getElementById('nameLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter a name.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkSearchName()
{
var errorMessage = '';
fieldValue = document.getElementById('wildCardString_name').value;
fieldLabel = document.getElementById('wildCardStringLabel_name');
if (fieldValue == '')
{
errorMessage = " - You must enter some search text.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkSearchKeyTechnologies()
{
var errorMessage = '';
fieldValue = document.getElementById('wildCardString_keyTechnologies').value;
fieldLabel = document.getElementById('wildCardStringLabel_keyTechnologies');
if (fieldValue == '')
{
errorMessage = " - You must enter some search text.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkFilename()
{
var errorMessage = '';
fieldValue = document.getElementById('file').value;
fieldLabel = document.getElementById('file');
if (fieldValue == '')
{
errorMessage = " - You must enter a file to upload.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}