<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">
Ext.onReady(function(){
var date = new Date( 2019, 12, 1, 12, 30) ;
var dateFormat = "Y-m-d H:i:s"
console.log( Ext.Date.format( date , dateFormat ) ) ;
//-- 출력 : 2020-01-01 12:30:00
});
</script>
</head>
<body>
</body>
</html>
'프로그래밍 > EXTJS4' 카테고리의 다른 글
ExtJS4 -delegate / 이벤트를 자식요소에 위임하기 (0) | 2019.12.06 |
---|---|
ExtJS4 - on / click 이벤트 추가하기 (0) | 2019.12.06 |
ExtJS4 - append / html요소(dom) 추가하기 (0) | 2019.12.06 |
EXTJS4 - update / html 내용 변경하기 (0) | 2019.12.06 |
EXTJS4 - show, hide / html요소(dom) 사라졌다 , 나타났다. (0) | 2019.12.06 |