<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.Register' , {
book : function(){
console.log('a room has been booked!');
}
});
// override 대상 : Training.Register
Ext.override( Training.Register , {
checkin : function(){
console.log('you just check-in');
},
doAll : function(){
this.book();
this.checkin();
}
});
var hotel = new Training.Register();
hotel.doAll();
// 출력
// a room has been booked!
// you just check-in
});
</script>
</head>
<body>
</body>
</html>
'프로그래밍 > EXTJS4' 카테고리의 다른 글
ExtJS4 - html 요소(dom) 선택하기 / get, query, select (0) | 2019.12.06 |
---|---|
Extjs4 - Ext.form.field.Text를 override하여 재정의 하기 (0) | 2019.12.06 |
EXTJS4 - CUSTOM TEXT 만들기 ( 내가 원하는 TEXT 만들기 ) (0) | 2019.12.06 |
ExtJS4 - Custom Panel 만들기 ( 내가 원하는 Panel 만들기 ) (0) | 2019.12.06 |
ExtJS4 - up , down / 자식 요소 , 부모 요소 찾기 (0) | 2019.12.06 |