703d9b7bbcf3cc0450f954a75547056eb230e3cd.svn-base
8.39 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
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
var RHForm = Class.create({
// 객체 초기화 V0.7
initialize :
function(oBody,orgForm,submitOfType)
{
this.oBody = oBody ;
this.orgForm = orgForm ;
this.el = orgForm.elements // type=image 가 제외된 elements
if( this.orgForm.method == "" )
this.orgForm.method = "POST" ;
this.preAction = this.orgForm.action ;
this.preTarget = this.orgForm.target ;
this.preMethod = this.orgForm.method ;
this.submitOfType = ( submitOfType == undefined ) ? "NORMAL" : submitOfType ; // AJAX
this.submitOfSuper = null ;
this.isSubmited = false ; // 중복 Submit 방지
return this ;
},
setAction :
function(url)
{
this.preAction = this.orgForm.action ;
this.orgForm.action = url ;
return this ;
},
setMethod :
function(str)
{
this.preMethod = this.orgForm.method ;
this.orgForm.method = str ;
return this ;
},
setTarget :
function(target)
{
this.preTarget = this.orgForm.target ;
this.orgForm.target = target ;
return this ;
},
setSubmitType :
function(key)
{
this.submitOfSuper = key ;
return this ;
},
getSubmitType :
function()
{
return this.submitOfSuper ;
return this ;
},
// 오리지날 폼 리턴
getOrg :
function()
{
return this.orgForm ;
},
// Document Object 무조건 Array 로 가져오기 V0.7
getOrgE :
function(key)
{
var orgElements = WPUtil.safeArray(this.orgForm[key]) ;
return this.oBody.wrapElements(orgElements) ;
},
// Document Object 무조건 Array 로 가져오기 V0.7
getaOrgE :
function(key)
{
return this.getOrgE(key)[0] ;
},
// 폼 엘레먼트 리턴
getE :
function(key)
{
var type = this.getaOrgE(key).getType() ;
var obj = null ;
switch(type)
{
case "text" :
obj = new RHText(this,key) ;
break ;
case "password" :
obj = new RHText(this,key) ;
break ;
case "textarea" :
obj = new RHText(this,key) ;
break ;
case "hidden" :
obj = new RHText(this,key) ;
break ;
case "button" :
obj = new RHText(this,key) ;
break ;
case "radio" :
obj = new RHRadio(this,key) ;
break ;
case "checkbox" :
obj = new RHCheckBox(this,key) ;
break ;
case "select-one" :
obj = new RHSelect(this,key) ;
break ;
default :
obj = this.getOrgE(key) ;
}
return obj ;
},
// 폼값을 가져온다.
getV :
function(key)
{
return this.getE(key).getV() ;
},
// 폼 텍스트를 가져온다.
getT :
function(key)
{
return this.getE(key).getT() ;
},
// 폼과 연관배열을 가지고 값을 세팅
setVAssoc :
function(assoc)
{
for (var key in assoc)
if(assoc.hasOwnProperty(key))
this.setV(key,assoc[key]) ;
return this ;
},
// 값을 세팅한다.
setV :
function(key,value,index)
{
this.getE(key).setV(value,index) ;
return this ;
},
// 배열인 객체에 값을 인덱스로 세팅한다.(For Text 만 지원)
setVBySpliter :
function(key,value,spliter)
{
this.getE(key).setVBySpliter(value,spliter) ;
return this ;
},
// 일반 SUBMIT 사용( POPUP 으로 SUBMIT )
submit :
function()
{
if( this.validate() == true ) {
if( this.isSubmited == false ) {
// rurl 을 전송
if( this.oBody.autoCreateRurl ) {
}
this.isSubmited = true ;
this.orgForm.submit() ;
this.setTarget(this.preTarget) ;
return true ;
}
else {
window.status = "확인버튼은 한번한 누르셔야 합니다." ;
}
}
else
return false ;
},
// POPUP 으로 SUBMIT
popSubmit :
function()
{
if( this.validate() == true ) {
this.orgForm.submit() ;
this.setTarget(this.preTarget) ;
return true ;
}
else
return false ;
},
// override 해서 발리데이트 할 수 있다.
chk :
function() { return true ; },
// 폼 데이터 검증처리함 - 오버라이드 처리할 수 있습니다.
validate :
function(except) {
var f = this.orgForm ;
var min = 0 ;
var necessary = "" ;
var isExcept = false ;
var chk_img = "";
except = ( except == undefined ) ? new Array() : except ;
for(var i = 0 ; i < f.elements.length ; i++ ) {
for(var j = 0 ; j < except.length ; j++ ) {
if( f.elements[i].name == except[j] ) {
isExcept = true ;
break ;
}
}
if( isExcept == true ) {
isExcept = false ;
continue ;
}
necessary = f.elements[i].getAttribute("VTYPE") ;
min = f.elements[i].getAttribute("MIN_LENGTH") ;
chk_img = f.elements[i].getAttribute("CHK_IMG") ;
if( necessary != null ) {
if( f.elements[i].type == "radio" ) {
if( WPUtil.nullRadio(f[f.elements[i].name]) == false ) {
try
{
f.elements[i].focus() ;
}
catch(e){ continue ; }
alert(f.elements[i].title + "은(는) 필수 입력 사항입니다.") ;
return false ;
}
}
else if ( f.elements[i].type == "checkbox") {
var sChkIndex = i ;
var bOk = false ;
while( f.elements[i].type == "checkbox" ) {
if( f.elements[i].checked == true )
bOk = true ;
i++ ;
}
if( bOk == false ) {
alert(f.elements[sChkIndex].title + "은(는) 필수 입력 사항입니다.") ;
return false ;
}
}
else
{
if( f.elements[i].value == "" ) {
if( f.elements[i].disabled )
{}
else if( f.elements[i].type == "select-one" )
f.elements[i].focus() ;
else if(f.elements[i].readOnly == false )
f.elements[i].focus() ;
alert(f.elements[i].title + "은(는) 필수 입력 사항입니다.") ;
return false ;
}
}
}
if( min != null ) {
if( f.elements[i].value.length < min ) {
alert(f.elements[i].title + "는 최소 " + min + "자 이상 입니다. 다시 입력하여 주십시오.") ;
if( f.elements[i].readOnly == false )
f.elements[i].focus() ;
return false ;
}
}
if(chk_img != null) {
var obj = f.elements[i];
if(obj.value == '')
return true;
if(obj.value != '' && !obj.value.toLowerCase().match(/(.jpg|.jpeg|.gif|.png|.bmp)/)) {
alert('이미지 파일만 업로드 할 수 있습니다.');
obj.focus();
//document.selection.clear();
//document.execCommand('Delete');
return false ;
}
}
}
// 오버라이드 된 chk() 함수 호출
if( this.chk() == false )
return false ;
return true ;
},
// 폼 Submit 후 다음 행동을 어떻게 할것인 지를 action.xxx 의 형식(규격) 맞춰 폼 엘레먼트 생성 V0.7
// nextType
// - ToOpener
// - ToSelf
// - ToPrepageByRef
// - ToOpenerAndClose
// - OpenerRefreshAndClose
// - Close
// - ToPrepage
nextActionCreate :
function(actionSC,nextType,nextUrl,nextMsg)
{
this.setMethod("POST") ;
this.setAction(actionSC) ;
this.create("rType",nextType) ;
this.create("rUrl",nextUrl) ;
this.create("rMsg",nextMsg) ;
},
// rurl 을 생성 V0.7
rurlCreate :
function(url)
{
this.ecreate("rurl",url) ;
},
// 데이터를 인코딩해서 생성
ecreate :
function(name,value,type)
{
this.create(name,WPUtil.bin2hex(value),type) ;
},
// 2008.06.21 연관배열을 히든으로 전부 변환
createAssoc :
function(assoc)
{
for(key in assoc)
if(assoc.hasOwnProperty(key)){
this.create(key,assoc[key]) ;
}
},
/* 해당 FORM 에 INPUT 태그 삽입&수정 */
create :
function(name,value,type)
{
var obj ;
var preObj ;
preObj = document.getElementsByName(name)[0] ;
if( preObj == undefined ) {
var input = document.createElement("INPUT");
input.type = "hidden" ;
input.name = name ;
input.id = name ;
input.value = value ;
type = ( type == undefined ) ? "afterBegin" : type ;
obj = this.orgForm.appendChild(input);
}
else
{
preObj.value = value ;
obj = preObj ;
}
return obj ;
}
}) ;
Object.extend(RHForm.prototype,{
nac : RHForm.prototype.nextActionCreate
}) ;
// CMD 값을 가지고 서브미트
Class.overload.apply(RHForm,[ 'submit',[ String ] ,
function(cmd)
{
this.create("cmd",cmd) ;
this.submit() ;
} ]
) ;
// 리턴 정보를 가지고 서브미트
Class.overload.apply(RHForm,[ 'submit',[ String , String , String , String ] ,
function(cmd,nextType,nextUrl,nextMsg)
{
this.create("cmd",cmd) ;
this.create("rType",nextType) ;
this.ecreate("rUrl",nextUrl) ;
this.create("rMsg",nextMsg) ;
this.submit() ;
} ]
) ;