코드. 

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title id="page-title">Extjs4</title>
	<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css">
    <!-- <script type="text/javascript" src="ext-all.js"></script>   -->
	<script type="text/javascript" src="ext-all.js"></script>
	<script type="text/javascript">
	Ext.onReady(function(){
	
		Ext.define('Training.CustomPanel' , {
			extend : 'Ext.panel.Panel' , 
			
			initComponent : function(){
				
				Ext.apply ( this , {
					title : 'my panel' , 
					html : 'My panel is created!' , 
					width : 200 , 
					height : 100 , 
					renderTo : Ext.getBody() 
				}); 
				
				this.callParent( arguments ) ; 
				
			}
			
		}); 
			
		var myPanel = Ext.create('Training.CustomPanel'); 
		myPanel.show(); 
		
	}); 
	</script>   
	
</head>
<body>
	
</body>
</html>

 

결과. 

 

블로그 이미지

나무뚱이

,