OSDN Git Service

fix many bugs.
[rec10/rec10-git.git] / Rec10WEB / trunk / src / schedule.htm
index beecb2c..b9b97c5 100644 (file)
@@ -5,16 +5,24 @@
         <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="./dojo/dojox/grid/_grid/Grid.css" rel="stylesheet" type="text/css">
-        <link href="./dojo/dojox/grid/_grid/tundraGrid.css" rel="stylesheet" type="text/css">
         <title>Rec10Web Schedule管理</title>
-        <script type="text/javascript" src="./dojo/dojo.js" djConfig="parseOnLoad: true"></script>
+        <script src="./dojo/dojo/dojo.js" djConfig="parseOnLoad:true">
+        </script>
+        <!-- テーマの読み込み -->
+        <style type="text/css">
+            @import "./dojo/dojo/resources/dojo.css";
+            @import "./dojo/dijit/themes/tundra/tundra.css";
+            @import "./dojo/dojox/grid/resources/Grid.css";
+            @import "./dojo/dojox/grid/resources/tundraGrid.css";
+        </style>
         <script type="text/javascript">
             <!--
-            dojo.require('dojox.grid.Grid');
+            dojo.require('dojox.grid.DataGrid');
             dojo.require('dojo.data.ItemFileReadStore');
             dojo.require('dojox.data.CsvStore');
             dojo.require('dojo.parser');
+            dojo.require('dijit.form.FilteringSelect');
+            dojo.require('dijit.form.Button');
             // グリッドに表示する元データをロード
             var store = new dojox.data.CsvStore({url:'./recdatum.csv'});
             -->
     <!-- テーマの読み込み -->
     <body class="tundra">  
         <table
-            dojoType="dojox.grid.Grid"
+            dojoType="dojox.grid.DataGrid"
             store="store"
             query="{id:'*'}"
             autoHeight="true"
             width="100%"
+            autoWidth="true"
             clientSort="true">
             <thead>
                 <tr>
                     <th width="30px" field="id">ID</th>
                     <th width="90px" field="type">タイプ</th>
                     <th width="50px" field="chtxt">チャンネル</th>
-                    <th field="title">タイトル</th>
+                    <th width="150px" field="title">タイトル</th>
                     <th width="100px" field="btime">開始</th>
                     <th width="100px" field="etime">終了</th>
                     <th width="30px" field="opt">オプション</th>
                 </tr>
             </thead>
         </table>
+        <select name="exec"
+                dojoType="dijit.form.FilteringSelect"
+                autocomplete="false"
+                value="del"
+                onChange="setType">
+            <option value="del">通常予約</option>
+            <option value="change">キーワード予約</option>
+        </select>
+        <div dojoType="dijit.form.Button" type="submit">Submit</div>
     </body>
 </html>