Changeset 17422 for schedule/Module


Ignore:
Timestamp:
01/03/14 09:23:03 (11 years ago)
Author:
tanio
Message:
 
Location:
schedule/Module
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/Scheduling.php

    r16982 r17422  
    11<?php
    22        include '../include/factdb.php';
    3         include '../function/SplitDelete.php';
     3        include 'control.php';
    44?>
    55<table width="100%" id="TableHolder" >
     
    1313                <td width="141" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center" >Transaction</td>
    1414        </tr>
    15 
    1615</table>
    1716        <div id="Data">
     17                <script>addRowClone();</script>
    1818        </div>
    19 <table width="100%">
    20         <tr>
    21        
    22        
    23                 <td style="border:0px solid white; color:#37DFB1; font-size:14px;"  width="80%" align="center">&nbsp;</td>
    24        
    25         </tr>
    26 </table>
  • schedule/Module/calendar.php

    r16926 r17422  
    5858            var CAL = Calendar.setup({
    5959                    cont: "cont",
    60                    // weekNumbers: true,
    6160                    selectionType: Calendar.SEL_MULTIPLE,
    6261                    showTime: 24,
    63                                         //fdow     : 1,
    6462                                        dateInfo:getDateInfo
    65                     // titleFormat: "%B %Y"
    6663            })
    6764          </script>
    6865                  </td>
    69 
    7066            <tr>
    7167              <td>
    7268                                <script type="text/javascript">
    73                                         $(document).ready(function(){
    74                                                 Graph();
    75                                         });
    76                                         </script>
    77                 <script type="text/javascript">
     69                                $(document).ready(function(){
     70                                        Graph();
     71                                });
    7872                                var day;
    7973                                var year;
    8074                                var month;
    8175                 CAL.addEventListener("onSelect", function(){
    82                                                         day =this.selection.print("%d").join("\n");
    83                                                         month =this.selection.print("%m").join("\n");
    84                                                         year =this.selection.print("%Y").join("\n");   
    85                              GetData();
    86                                                         GetDate();
    87                                                 $('#Scheduling').load('Module/Scheduling.php?days='+year+'-'+month+'-'+day);
    88                                                         //$.get("function/function.php", {days:year+'-'+month+'-'+day});
    89                                                         //$load("function/function.php?days:year+-'+month+'-'+day);
    90                                                 //$.get("function/SplitDelete.php", {days:year+'-'+month+'-'+day});
    91                                                  
    92 
    93                                                          //GetDate();
    94                                                        
    95 
    96                                
    97                 });
    98                                                
    99                                                
    100                                                        
     76                                                day =this.selection.print("%d").join("\n");
     77                                                month =this.selection.print("%m").join("\n");
     78                                                year =this.selection.print("%Y").join("\n");   
     79                                                GetData();
     80                                                GetDate(day,month,year);
     81                                                $('#Scheduling').load('Module/Scheduling.php?days='+year+'-'+month+'-'+day);   
     82                });                                                     
    10183               </script>
    10284              </td>
     
    10789      </tr>
    10890    </table>
    109 
    11091  </body>
    11192</html>
  • schedule/Module/link.php

    r16982 r17422  
    1 
    2 
    3 
    4 
    5 
    6 
    7 
    8 <script src="js/jquery-1.9.1.js"></script>
     1<script src="js/jquery-1.7.1.js"></script>
    92<script src="js/jquery-ui-1.10.1.custom.js"></script>
    103<link href="css/jquery-ui-1.10.1.custom.css" rel="stylesheet">
Note: See TracChangeset for help on using the changeset viewer.