일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스카이 안드로이드폰 시리우스
- 안드로이드 배경화면
- 안드로이드 개발
- 안드로이드 바탕화면
- MapView
- 구글 안드로이드 개발
- 하루 한마디 영어
- 영어
- 하루한마디영어
- 안드로이드 개발 2.0 강좌
- Form Stuff
- 안드로이드개발
- 안드로이드2.0개발
- 안드로이드 개발 강좌
- 안드로이드폰
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글 안드로이드
- SKY 시리우스
- 안드로이드2.0
- sky 시리우스폰
- 스마트폰 배경화면
- 구글안드로이드
- 아이폰 배경화면
- 안드로이드 2.0 개발
- objective-c
- 안드로이드
- 안드로이드 개발 2.0
- android
- 아이폰 바탕화면
- 인기있는 블로그 만들기
- Today
- Total
moozi
grid.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Grid - w2ui</title>
<link rel="stylesheet" href="css/w2ui-1.4.3.css">
<!--
<link rel="stylesheet" href="css/w2ui-1.2.css">
-->
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="js/w2ui-1.4.3.js"></script>
<!-- <script src="js/w2ui-1.2.js"></script>-->
<style>
#grid1{
margin:0 auto;
width:760px;
height:200px;
}
</style>
<script>
$(document).ready(function(){
$("#grid1").w2grid({
name:"grid",
show:{
header:true,
toolbar:true,
footer:true,
lineNumbers:true,
toolbarSearch:true,
selectColumn:true
},
columns:[
{field:"name",caption:"도서명",size:"40%",editable:{type:"text"}},
{field:"author",caption:"저자",size:"20%",editable:{type:"text"}},
{field:"publisher",caption:"출판사",size:"20%",editable:{type:"text"}},
{field:"price",caption:"가격",size:"20%",editable:{type:"text"}},
],
records:[
{recid:1,
name:"HTML5의 정석",
author:"김정석",
publisher:"조은출판사",
price:30000
},
{recid:2,
name:"CSS3의 정석",
author:"박정석",
publisher:"조은출판사",
price:35000
},
{recid:3,
name:"javascript의 정석",
author:"이정석",
publisher:"나은출판사",
price:15000
}
]
});
});
</script>
</head>
<body>
<div id="grid1"></div>
</body>
</html>
'TIS_2016 > HTML5_3기' 카테고리의 다른 글
modal.html, loader.html (0) | 2016.08.12 |
---|---|
accordion.html (0) | 2016.08.12 |
datepicker (0) | 2016.08.12 |
ajax연습문제04 (0) | 2016.08.11 |
jquery연습문제풀이 (0) | 2016.08.11 |