561a1b9e2ae4919b13c1ac71e26904a4ba1b3df6.svn-base
523 Bytes
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
var RHRadio = Class.create(RBaseElementObject,{
initialize :
function($super,rhForm,key)
{
$super(rhForm,key) ;
},
getV :
function()
{
var value = null ;
this.iter(
function(item,cur)
{
if( item.checked )
value = item.getV() ;
}
) ;
return ( value == null ) ? "" : value ;
},
setV :
function(value)
{
this.iter(
function(item,cur)
{
if( item.getV() == value )
item.checked = true ;
}
) ;
return this ;
}
}) ;