Changeset 16688 for schedule


Ignore:
Timestamp:
06/04/13 16:32:22 (11 years ago)
Author:
tanio
Message:
 
Location:
schedule
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16687 r16688  
    104104                                                        year =this.selection.print("%Y").join("\n");   
    105105                             GetData();
     106                                                         GetDate();
    106107                                                       
    107108                               
  • schedule/function/function.php

    r16686 r16688  
    11 <div id="saving">
     2 
    23 <script type="text/javascript">
    34
     
    56 
    67 
     8
     9
    710 
    811 
    9  
    10  
    11         $(document).ready(function(){
     12        $(document).ready(function GetDate(){
    1213         // for fupdate
    1314         
    1415         
     16       
    1517         
    16         var currentDate2 = new Date();
    17         var day2 = currentDate2.getDate();
    18         var month2 = currentDate2.getMonth() + 1;
    19         var year2 = currentDate2.getFullYear();
    20         var fullday2=day2+'-'+month2+'-'+year2;
    2118       
    22         var day;
    23         var month;
    24         var year;
    25         var fullday;
    26         <?php
    27  if($_GET['day'] || $_GET['month'] || $_GET['year']){
    28  
    29  ?>
    30  
    31          day = <?php echo $_GET['day'];  ?>;
    32          month = <?php echo $_GET['month']; ?>;
    33          year = <?php echo $_GET['year']; ?>;
    34          fullday=day+'-'+month+'-'+year;
    35                
    36  
    37  
    38  <?php
    39  
    40  
    41  }else{
    42  
    43  ?>
    44                 var currentDate = new Date();
    45                  day = currentDate.getDate();
    46          month = currentDate.getMonth() + 1;
    47          year = currentDate.getFullYear();
    48          fullday=day+'-'+month+'-'+year;
    49         <?php    }  ?>
    5019       
    5120        <?php
     
    5827        ?>
    5928        $('#save').click(function(){
    60        
    61        
     29
     30
    6231                var InputValue = [];
    6332                var selectedSource = [];
     
    8958               
    9059                if(checks == 0){
    91                 //window.location = 'Transaction/insert.php?Time='+selectedTime+'&Source='+selectedSource+'&measure='+selectedMeasurement+'&Data='+InputValue+'&Date='+fullday+'&Date2='+fullday2;
     60                window.location = 'Transaction/insert.php?Time='+selectedTime+'&Source='+selectedSource+'&measure='+selectedMeasurement+'&Data='+InputValue+'&Date='+day+'-'+month+'-'+year;
    9261        }else{
    9362       
  • schedule/include/factdb.php

    r16686 r16688  
    22
    33       
    4         //$con=mysql_connect("localhost","root","");
    5         $con=mysql_connect("localhost","scheduletest","t3stsched");
     4        $con=mysql_connect("localhost","root","");
     5        //$con=mysql_connect("localhost","scheduletest","t3stsched");
    66        mysql_select_db("sandboxschedule",$con);
    77 ?>
  • schedule/js/chart.js

    r16687 r16688  
    99                //$('#data').append('1st'+source);
    1010        }
     11       
    1112}
     13
     14
     15
     16
    1217
    1318function GetXMLData(index, source)
Note: See TracChangeset for help on using the changeset viewer.