제1장 - ExtJs - 개체 대상

ExtJs 객체 대상
본 장의 임무
1. ExtJs 객체 대상
/**
 *  
 */
Ext.namespace("com.aptech.fy");

fy = com.aptech.fy;

/**
 *  
 */
Ext.onReady(function(){

	//Ext.Msg.alert("hello world!!!!!");
	//alert("hello world!!!!!");
	
	/**
	 *  
	 */
	fy.people = function(obj){
		
		Ext.apply(this,obj);
		
		// 
		var name = "";
		var sex = "";
		
		// 
		this.location = "sz";
		this.language = "china";
		
		// 
		this.getName = function(){
			return name;
		};
		this.setName = function(obj){
			name = obj;
		};
	}

	/**
	 *  
	 */
	fy.people.begin = function(){
	  alert(" !!!");
	}
	
	/**
	 *  
	 */
	fy.student = Ext.extend(fy.people,{
	
		/**
		 *  
		 */
		constructor:function(){
			fy.student.superclass.constructor.apply(this,arguments);
		},
		
		study:function(obj){
		//alert(obj.name);
		}
	})
	
	fy.people.begin();
});

 
 
본 장의 목표
1. ExtJs 객체에 대한 이해

좋은 웹페이지 즐겨찾기