OSDN Git Service

show schedule tasks
[rec10/rec10-git.git] / Rec10WEB / trunk / src / schedule.htm
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html lang="ja">
3    <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5     <meta http-equiv="Content-Style-Type" content="text/css">
6     <meta http-equiv="Content-Script-Type" content="text/javascript">
7     <link href="../dojox/grid/_grid/Grid.css" rel="stylesheet" type="text/css">
8     <link href="../dojox/grid/_grid/tundraGrid.css" rel="stylesheet" type="text/css">
9     <title>Grid / Dojo</title>
10     <script type="text/javascript" src="../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
11     <script type="text/javascript">
12     <!--
13         dojo.require('dojox.grid.Grid');
14         dojo.require('dojo.data.ItemFileReadStore');
15         dojo.require('dojox.data.CsvStore');
16         dojo.require('dojo.parser');
17
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         style="height:400px;"
28         dojoType="dojox.grid.Grid"
29         store="store"
30         query="{id:'*'}"
31         clientSort="true">
32             <thead>
33                 <tr>
34                     <th width="20px" field="id">ID</th>
35                     <th width="60px" field="type">タイプ</th>
36                     <th width="50px" field="chtxt">チャンネル</th>
37                     <th width="200px" field="title">タイトル</th>
38                     <th width="130px" field="btime">開始</th>
39                     <th width="130px" field="etime">終了</th>
40                     <th width="30px" field="opt">オプション</th>
41                     <th width="50px" field="deltaday">周期</th>
42
43
44                 </tr>
45             </thead>
46         </table>
47 </body>
48 </html>