OSDN Git Service

show schedule tasks
authorgn64_jp <gn64_jp@4e526526-5e11-4fc0-8910-f8fd03428081>
Mon, 1 Jun 2009 21:27:50 +0000 (21:27 +0000)
committergn64_jp <gn64_jp@4e526526-5e11-4fc0-8910-f8fd03428081>
Mon, 1 Jun 2009 21:27:50 +0000 (21:27 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/rec10@36 4e526526-5e11-4fc0-8910-f8fd03428081

Rec10WEB/trunk/src/schedule.htm [new file with mode: 0644]

diff --git a/Rec10WEB/trunk/src/schedule.htm b/Rec10WEB/trunk/src/schedule.htm
new file mode 100644 (file)
index 0000000..c46d03f
--- /dev/null
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="ja">
+   <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <meta http-equiv="Content-Style-Type" content="text/css">
+    <meta http-equiv="Content-Script-Type" content="text/javascript">
+    <link href="../dojox/grid/_grid/Grid.css" rel="stylesheet" type="text/css">
+    <link href="../dojox/grid/_grid/tundraGrid.css" rel="stylesheet" type="text/css">
+    <title>Grid / Dojo</title>
+    <script type="text/javascript" src="../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
+    <script type="text/javascript">
+    <!--
+        dojo.require('dojox.grid.Grid');
+        dojo.require('dojo.data.ItemFileReadStore');
+        dojo.require('dojox.data.CsvStore');
+        dojo.require('dojo.parser');
+
+        // グリッドに表示する元データをロード
+        var store = new dojox.data.CsvStore({url:'./recdatum.csv'});
+    -->
+    </script>
+</head>
+
+      <!-- テーマの読み込み -->
+       <body class="tundra">
+       <table
+        style="height:400px;"
+        dojoType="dojox.grid.Grid"
+        store="store"
+        query="{id:'*'}"
+        clientSort="true">
+            <thead>
+                <tr>
+                    <th width="20px" field="id">ID</th>
+                    <th width="60px" field="type">タイプ</th>
+                    <th width="50px" field="chtxt">チャンネル</th>
+                    <th width="200px" field="title">タイトル</th>
+                    <th width="130px" field="btime">開始</th>
+                    <th width="130px" field="etime">終了</th>
+                    <th width="30px" field="opt">オプション</th>
+                    <th width="50px" field="deltaday">周期</th>
+
+
+                </tr>
+            </thead>
+        </table>
+</body>
+</html>