RHSelect.js
1.01 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
var RHSelect = Class.create(RBaseElementObject,{
initialize :
function($super,rhForm,key)
{
$super(rhForm,key) ;
},
/** OPTION 값 세팅 **/
/** assoc : 값/텍스트 Hash , index : 적용할 index **/
/** index 가 없으면 전체 적용 **/
setOption :
function(assoc,index)
{
this.iter(
function(item,cur)
{
var aOption = null ;
for(var key in assoc)
if(assoc.hasOwnProperty(key))
this.makeOption(item,assoc[key],key) ;
return ( index != cur )
}
) ;
return this ;
},
/** 옵션 만들기 **/
/** index : 엘레먼트 index , name : option text , value : option value **/
makeOption :
function(index,name,value)
{
var ele = this.getOrg()[index] ;
var aOption = document.createElement("OPTION");
aOption.text = name ;
aOption.value = value ;
ele.add(aOption) ;
},
/** return : OPTION 객체를 리턴한다. **/
getOption :
function(index)
{
var ele = this.getOrg()[index] ;
return ele.options(ele.selectedIndex) ;
}
}) ;