Skip to content
  • This project
    • Loading...
  • Sign in

sayhoChun / kcSpecialVehicle

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • kcSpecialVehicle
  • .svn
  • pristine
  • 57
  • 578a490d57b7d5854e6ebbd45b9ba6542b46a...
  • sayhoChun's avatar
    initial commit · 00f7359b
    00f7359b
    sayhoChun committed 2017-02-13 09:30:06 +0900
578a490d57b7d5854e6ebbd45b9ba6542b46a9d1.svn-base 401 Bytes
Raw Blame History Permalink
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
// 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 ;
				}
			) ;
		}
}) ;