OSDN Git Service

commit iepg adding on web function.
[rec10/rec10-git.git] / Rec10WEB / trunk / src / schedule.htm
1
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3 <html lang="ja">
4     <head>
5         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6         <meta http-equiv="Content-Style-Type" content="text/css">
7         <meta http-equiv="Content-Script-Type" content="text/javascript">
8         <link href="./dojo/dojox/grid/_grid/Grid.css" rel="stylesheet" type="text/css">
9         <link href="./dojo/dojox/grid/_grid/tundraGrid.css" rel="stylesheet" type="text/css">
10         <title>Rec10Web Schedule管理</title>
11         <script type="text/javascript" src="./dojo/dojo.js" djConfig="parseOnLoad: true"></script>
12         <script type="text/javascript">
13             <!--
14             dojo.require('dojox.grid.Grid');
15             dojo.require('dojo.data.ItemFileReadStore');
16             dojo.require('dojox.data.CsvStore');
17             dojo.require('dojo.parser');
18             // グリッドに表示する元データをロード
19             var store = new dojox.data.CsvStore({url:'./recdatum.csv'});
20             -->
21         </script>
22     </head>
23
24     <!-- テーマの読み込み -->
25     <body class="tundra">  
26         <table
27             dojoType="dojox.grid.Grid"
28             store="store"
29             query="{id:'*'}"
30             autoHeight="true"
31             width="100%"
32             clientSort="true">
33             <thead>
34                 <tr>
35                     <th width="30px" field="id">ID</th>
36                     <th width="90px" field="type">タイプ</th>
37                     <th width="50px" field="chtxt">チャンネル</th>
38                     <th field="title">タイトル</th>
39                     <th width="100px" field="btime">開始</th>
40                     <th width="100px" field="etime">終了</th>
41                     <th width="30px" field="opt">オプション</th>
42                     <th width="50px" field="deltaday">周期</th>
43                 </tr>
44             </thead>
45         </table>
46     </body>
47 </html>