Sencha Custom js 파일 등록
2024. 12. 5. 17:09ㆍJavascript/Sencha
app.json에 추가
{
"name": "MyApp",
"version": "1.0.0",
"requires": [
"ext"
],
"id": "MyApp",
"js": [
{
"path": "app.js",
"bundle": true
},
{
"path": "resources/scripts/myCustomScript.js",
"includeInBundle": false
}
],
"css": [
{
"path": "resources/css/app.css",
"bundle": true
}
]
}
HTML 파일에 등록
<!DOCTYPE html>
<html>
<head>
<title>Sencha Application</title>
<script src="path/to/myCustomScript.js"></script>
<script src="path/to/sencha/app.js"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>
'Javascript > Sencha' 카테고리의 다른 글
Sencha treepanel row 선택하기 (0) | 2024.12.05 |
---|---|
Sencha timefield의 값과 표시를 분리하기 (0) | 2024.12.05 |
Sencha treepanel의 모든 node 펼치기 (0) | 2024.12.05 |
Sencha Object 접근하기 (0) | 2024.12.05 |
Sencha treepanel에서 선택된 row 정보 가져오기 (0) | 2024.12.05 |