일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- firebase
- 안드로이드
- LAYER_TYPE_SOFTWARE
- kotlin
- 스트리밍
- 컴파일
- vuepress
- 다윈
- error
- Gradle
- fabric-sdk-java
- Android
- Hyperledger
- bigquery
- null safety
- convert
- C
- quick-start
- fabic
- Realm
- web3js
- Glide
- porterduff
- log
- coroutines
- hardwareacceleration
- test
- Exception
- dataginding
- ethereum
- Today
- Total
날마다 새롭게 또 날마다 새롭게
[Kendo] KendoUI 시작하기 본문
1. KendoUI Download
2. Dynamic Web Project 를 생성
3. WebContent에 Down받은 압축파일에서 js 와 styles 폴더를 복사
※ js 와 styles 폴더에서 jquery missing semicolon error 가 발생할 경우
해결] 프로젝트 속성 - JavaScript - Include Path - Source 탭 - Excluded 를 수정해야함.
Inclusion and Exclusion Patterns에서 Exclusion patterns 에 **/*.min.js 라고 입력함.
4. 간단한 샘플 코드 작성 index.jsp
<!doctype html> <html> <head> <title>Kendo UI DataViz</title> <link href="styles/kendo.dataviz.min.css" rel="stylesheet" /> <script src="js/jquery.min.js"></script> <script src="js/kendo.dataviz.min.js"></script> </head> <body> <div id="gauge"></div> <script> $(function() { $("#gauge").kendoRadialGauge(); }); </script> </body> </html>
5. 실행