일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
- porterduff
- firebase
- quick-start
- Gradle
- kotlin
- null safety
- C
- Exception
- bigquery
- fabic
- ethereum
- error
- coroutines
- 다윈
- test
- convert
- Hyperledger
- Android
- 안드로이드
- dataginding
- vuepress
- log
- fabric-sdk-java
- 스트리밍
- web3js
- Glide
- 컴파일
- Realm
- hardwareacceleration
- LAYER_TYPE_SOFTWARE
- 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. 실행