common_original.js
7.77 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
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
var browser;
if (document.all)
browser = "IE";
else
browser = "MOZ";
function replace(oldString, findString, replaceString)
{
stringParts = oldString.split(findString);
newString = "";
for (s=0;s<stringParts.length;s++)
{
newString += stringParts[s];
if (s < stringParts.length - 1)
newString += replaceString;
}
return newString;
}
function objectEvent(target, eventType, currbrowser)
{
var ieEvent, mozEvent;
if(!currbrowser)
currbrowser = browser;
if (typeof(target)!="object")
target = document.getElementById(target);
try
{
//standardize event names
if (eventType.indexOf("on") != -1)
{
ieEvent = eventType;
mozEvent = replace(eventType, "on", "");
}
else
{
ieEvent = "on" + eventType;
mozEvent = eventType;
}
if (currbrowser == "IE")
{
target.fireEvent(ieEvent);
return true;
}
else
{
oEvent = document.createEvent("MouseEvents");
oEvent.initMouseEvent(
mozEvent, // the type of mouse event
true, // do you want the event to
// bubble up through the tree? (sure)
true, // can the default action for this
// event, on this element, be cancelled? (yep)
window, // the 'AbstractView' for this event,
// which I took to mean the thing sourcing
// the mouse input. Either way, this is
// the only value I passed that would work
1, // details -- for 'click' type events, this
// contains the number of clicks. (single click here)
1, // screenXArg - I just stuck 1 in cos I
// really didn't care
1, // screenYArg - ditto
1, // clientXArg - ditto
1, // clientYArg - ditto
false, // is ctrl key depressed?
false, // is alt key depressed?
false, // is shift key depressed?
false, // is meta key depressed?
0, // which button is involved?
// I believe that 0 = left, 1 = right,
// 2 = middle
target // the originator of the event
// if you wanted to simulate a child
// element firing the event you'd put
// its handle here, and call this method
// on the parent catcher. In this case,
// they are one and the same.
);
target.dispatchEvent(oEvent);
}
return true;
}
catch(ex)
{
return false;
}
}
function getAllDescendants(node, tagName)
{
if (tagName != null && tagName != "" && tagName != undefined)
tagName = tagName.toUpperCase();
else
tagName = "ALL";
if (typeof(node)!="object")
node = document.getElementById(node);
var objArray = new Array();
for(var c=0;c<node.childNodes.length;c++)
{
if (node.childNodes[c].tagName == tagName || tagName == "ALL" && node.childNodes[c].tagName != undefined)
{
objArray[objArray.length] = node.childNodes[c];
}
if (node.childNodes[c].childNodes.length > 0)
{
var subChildren = getAllDescendants(node.childNodes[c], tagName);
for (var s=0;s<subChildren.length;s++)
objArray[objArray.length] = subChildren[s];
}
}
return objArray;
}
function doNothing()
{
return false;
}
function getHost(url)
{
url = url + "";
url = url.split("/");
return url[2];
}
function getQueryString(path)
{
var queryString = new Object();
if (path == null || path == "" || path == undefined)
path = document.location + "";
var pathParts = path.split("?");
if (pathParts.length > 1)
{
pathParts = pathParts[1].split("&");
for (var p=0;p<pathParts.length;p++)
{
var paramParts = pathParts[p].split("=");
if (paramParts.length > 1)
{
paramParts[1] = replace(paramParts[1], "%20", " ");
eval ("queryString." + paramParts[0] + "=\"" + paramParts[1] + "\"");
}
}
}
return queryString;
}
function serializeObject(currObject)
{
var XMLString = "";
for (var i in currObject)
{
var nodeType = typeof(currObject[i]);
if (typeof(currObject[i])!="object")
XMLString += "<" + nodeType + " name=\"" + i + "\" value=\"" + currObject[i] + "\"/>";
else
{
if (typeof(currObject[i].length)!="undefined")
var nodeType = "array";
else
var nodeType = "object";
XMLString += "<" + nodeType + " name=\"" + i + "\">";
XMLString += serializeObject(currObject[i]);
XMLString += "</" + nodeType+ ">";
}
}
return XMLString;
}
function getFormData(startNode)
{
if (startNode == null || startNode == undefined || startNode == "")
startNode = document.body;
if (typeof(startNode)!="object")
startNode = document.getElementById(startNode);
try
{
var childArray = new Array();
childArray = getAllDescendants(startNode);
var dataObj = new Object();
for (var c=0;c<childArray.length;c++)
{
if (childArray[c].id != null && childArray[c].id != "")
{
var tagType;
tagType = childArray[c].tagName.toUpperCase();
switch(tagType)
{
case "INPUT":
{
var inputObj = new Object();
inputObj.type = childArray[c].type;
inputObj.id = childArray[c].id;
if (childArray[c].type.toLowerCase() == "checkbox")
inputObj.value = childArray[c].checked;
else
inputObj.value = HTMLEncode(childArray[c].value);
if (childArray[c].attributes.getNamedItem("datatype") != null && childArray[c].attributes.getNamedItem("datatype") != "" && childArray[c].attributes.getNamedItem("datatype") != undefined)
inputObj.datatype = childArray[c].attributes.getNamedItem("datatype").value;
eval("dataObj." + childArray[c].id + "= new Object();");
eval("dataObj." + childArray[c].id + "= inputObj;");
break;
}
case "SELECT":
{
var inputObj = new Object();
inputObj.type = "select";
inputObj.id = HTMLEncode(childArray[c].id);
//inputObj.value = childArray[c].options[childArray[c].selectedIndex].value;
inputObj.value = childArray[c].value;
eval("dataObj." + childArray[c].id + "= new Object();");
eval("dataObj." + childArray[c].id + "= inputObj;");
break;
}
case "TEXTAREA":
{
var inputObj = new Object();
inputObj.type = "textarea";
inputObj.id = childArray[c].id;
inputObj.value = replace(HTMLEncode(childArray[c].value), "\r\n", "&linebreak;");
eval("dataObj." + childArray[c].id + "= new Object();");
eval("dataObj." + childArray[c].id + "= inputObj;");
break;
}
case "TABLE":
{
if (childArray[c].className == "GridMain")
{
var gridName = replace(childArray[c].id, "tbl", "");
var data = eval(gridName + ".getGridData()");
eval("dataObj." + gridName + "= new Object();");
eval("dataObj." + gridName + "= data;");
}
break;
}
}
}
}
return dataObj;
}
catch(e)
{
alert (e.message);
}
}
function HTMLEncode(htmldata)
{
htmldata = replace(htmldata, "<", "<");
htmldata = replace(htmldata, ">", ">");
//htmldata = replace(htmldata, "\"", "'");
htmldata = replace(htmldata, "#", "£");
htmldata = replace(htmldata, "&", "&");
return htmldata;
}
function xmlDecode(xmldata)
{
xmldata = replace(xmldata, "&", "&");
xmldata = replace(xmldata, "<", "<");
xmldata = replace(xmldata, ">", ">");
xmldata = replace(xmldata, "£", "#");
xmldata = replace(xmldata, "$", "$");
return xmldata;
}