// 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 ;
				}
			) ;
		}
}) ;


