RHText.js
401 Bytes
// Text Element Wrapping Class
var RHText = Class.create(RBaseElementObject,{
initialize :
function($super,rhForm,key)
{
$super(rhForm,key) ;
},
// ڵϼ
ac :
function(is,index)
{
this.iter(
function(item,cur)
{
if( index == undefined )
item.autocomplete = is ;
else if( index == cur )
item.autocomplete = is ;
}
) ;
}
}) ;