Changeset 17555 for schedule/Module


Ignore:
Timestamp:
02/13/14 18:17:34 (11 years ago)
Author:
tose
Message:
Modifications on the disabling/enabling of controls
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/control.php

    r17543 r17555  
    22'use strict';
    33var ctr;
    4 var testdata = "old data";
    5 var pastdata = false;
    64var transPrevNight = 1;
    75       
     
    2523                // CREATE ELEMENT       
    2624                var newtr = document.createElement("tr");
    27                         newtr.setAttribute("class","tr");
     25                newtr.setAttribute("class","tr");
     26                newtr.setAttribute("width", "100%");
    2827                var newtd_c1 = document.createElement("td");
    29                         newtd_c1.setAttribute("width","147");
     28                        //newtd_c1.setAttribute("width","120");
    3029                        newtd_c1.setAttribute("align","center");
    3130                        newtd_c1.appendChild(
     
    3736                        );
    3837                var newtd_c2 = document.createElement("td");
    39                         newtd_c2.setAttribute("width","138");
     38                        newtd_c2.setAttribute("width","20%");
    4039                        newtd_c2.setAttribute("align","center");
    4140                        newtd_c2.appendChild(
    42                                 select = document.createElement("select"),
     41                                             select = document.createElement("select"),
     42                                             select.setAttribute("style", "width=100px"),
    4343                                select.setAttribute("class","measure"),
    4444                                $.ajax({                                                                                                                                        //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
     
    5757                                })                                                                                                                                                              // End of retrieving
    5858                        );
    59                         newtd_c2.setAttribute("width","115");
    60                         newtd_c2.setAttribute("align","center");
     59                        newtd_c2.setAttribute("align","center");
    6160                        newtd_c2.appendChild(
    6261                                input_data = document.createElement("input"),
     
    6867                        );
    6968                var newtd_c3 = document.createElement("td");
    70                         newtd_c3.setAttribute("width","98");
     69                        newtd_c3.setAttribute("width","20%");
    7170                        newtd_c3.setAttribute("align","center");
    7271                        newtd_c3.appendChild(
    73                                         selection = document.createElement("select"),
     72                                             selection = document.createElement("select"),
     73                                             selection.setAttribute("style", "width=100px"),
    7474                                        selection.setAttribute("class","source"),
    7575                                        $.ajax({                                                                                                                                        //Retrieving Measurement name and id in Database september 13,2013 modify by Jaypee Tanio
     
    7878                                                success:function(data)
    7979                                                {
    80                                                         var obj = $.parseJSON(data);
     80                                                       var obj = $.parseJSON(data);
     81                                                       selection.appendChild(
     82                                                             option = document.createElement('option'),
     83                                                             option.setAttribute('value', 0),
     84                                                             option.appendChild(document.createTextNode("---"))
     85                                                       );
    8186                                                        $.each(obj,function(){
    8287                                                        selection.appendChild(
     
    9095                        );
    9196                var newtd_c4 = document.createElement("td");
    92                         newtd_c4.setAttribute("width","119");
     97                        newtd_c4.setAttribute("width","50%");
    9398                        newtd_c4.setAttribute("align","center");
    9499                        newtd_c4.appendChild(
     
    96101                                input_data.setAttribute("type","text"),
    97102                                input_data.setAttribute("class","selected"),
    98                                 input_data.setAttribute("size","12"),
     103                                input_data.setAttribute("size","50"),
    99104                                input_data.setAttribute("placeholder","Value")
    100105                        );
    101106                var newtd_c5 = document.createElement("td");
    102                         newtd_c5.setAttribute("width","115");
    103                         newtd_c5.setAttribute("align","center");
     107                        newtd_c5.setAttribute("align","center");
     108                        newtd_c5.setAttribute("width", "10%");
    104109                        newtd_c5.appendChild(
    105110                                input_data = document.createElement("input"),
     
    129134    $day =date("Y-m-d");
    130135}
    131 $prev = mysql_query("SELECT date(fStart) AS PrevDate FROM schedule WHERE (date(fStart) < '2014-01-26') ORDER BY date(fStart) DESC LIMIT 1");
     136if(isset($_GET['prev']))
     137{
     138    $prevday = $_GET['prev'];
     139}
     140else
     141{
     142    $prevday = 'false';
     143}
     144
     145/*$prev = mysql_query("SELECT date(fStart) AS PrevDate FROM schedule WHERE (date(fStart) < '2014-01-26') ORDER BY date(fStart) DESC LIMIT 1");
    132146$prevnight = mysql_fetch_array($prev);
    133147  if(mysql_num_rows($prevnight) > 0) {
     
    137151  }
    138152$prevday = date('Y-m-d', strtotime($day .' -1 day'));
    139 $prev_time = array();
     153$prev_time = array();*/
    140154?>
    141155
    142156function addRowCloneNew(nextrow){
    143         var targetView = document.getElementById("Data");
     157    var targetView = document.getElementById("Data");
     158targetView.setAttribute("width", "100%");
    144159        // CREATE ELEMENT
    145160        // COUNT LIST
     
    155170                newdiv.setAttribute("id","list_"+newlist);
    156171                newdiv.setAttribute("class","datalisting");
    157                 newdiv.setAttribute("style","margin:5px 0;");
     172                newdiv.setAttribute("style","margin:5px 0;");
     173                newdiv.setAttribute("width", "100%");
    158174        var newtable = document.createElement("table");
    159175                newtable.setAttribute("class","dataTable");
     
    166182                newInnertable.setAttribute("width","100%");
    167183                newInnertable.setAttribute("border","1");
    168                
    169184                newInnertable.setAttribute("cellspacing","0");
    170185                newInnertable.setAttribute("cellpadding","0");
    171186               
    172187        var newtr = document.createElement("tr");
    173                 newtr.setAttribute('class','tr');
     188                newtr.setAttribute('class','tr');
     189        newtr.setAttribute("width", "100%");
    174190        var newtd_c1 = document.createElement("td");
    175                 newtd_c1.setAttribute("width","200");
     191                newtd_c1.setAttribute("width","15%");
    176192                newtd_c1.setAttribute("align","center");
    177193                newtd_c1.setAttribute("valign", "top");
     
    179195                        input_data = document.createElement("input"),
    180196                        input_data.setAttribute("type","time"),
    181                         input_data.setAttribute("class","time"),
    182                         input_data.setAttribute("size","10"),
     197                                     input_data.setAttribute("class","time"),
     198                                     //input_data.setAttribute("width", "50%"),
     199                        input_data.setAttribute("size","5"),
    183200                        input_data.setAttribute("autofocus","true")
    184201                );
     
    193210        var newtd_c2 = document.createElement("td");
    194211       
    195                 newtd_c2.setAttribute("width","138");
     212                newtd_c2.setAttribute("width","20%");
    196213                newtd_c2.setAttribute("align","center");
    197214                newtd_c2.appendChild(
     
    215232                       
    216233                );
    217                 newtd_c2.setAttribute("width","115");
    218                 newtd_c2.setAttribute("align","center");
    219                 newtd_c2.appendChild(
     234                newtd_c2.appendChild(
    220235                        input_data = document.createElement("input"),
    221236                        input_data.setAttribute("type","button"),
     
    226241                        });
    227242        var newtd_c3 = document.createElement("td");
    228                 newtd_c3.setAttribute("width","98");
     243                newtd_c3.setAttribute("width","20%");
    229244                newtd_c3.setAttribute("align","center");
    230245                newtd_c3.appendChild(
     
    236251                                success:function(data)
    237252                                {
    238                                         var obj = $.parseJSON(data);
    239                                         $.each(obj,function(){
    240                                         selection.appendChild(
     253                                    var obj = $.parseJSON(data);
     254                                selection.appendChild(
     255                                                             option = document.createElement('option'),
     256                                                             option.setAttribute('value', 0),
     257                                                             option.appendChild(document.createTextNode("---"))
     258                                                       );
     259                                        $.each(obj,function(){
     260                                        selection.appendChild(
    241261                                                option=document.createElement('option'),
    242262                                                option.setAttribute('value',this['fSourceKEY']),
     
    248268                );
    249269        var newtd_c4 = document.createElement("td");
    250                 newtd_c4.setAttribute("width","119");
     270                newtd_c4.setAttribute("width","50%");
    251271                newtd_c4.setAttribute("align","center");
    252272                newtd_c4.appendChild(
    253273                        input_data = document.createElement("input"),
    254274                        input_data.setAttribute("type","text"),
    255                         input_data.setAttribute("class","selected"),
    256                         input_data.setAttribute("size","12"),
     275                                     input_data.setAttribute("class","selected"),
     276                                     //input_data.setAttribute("width", "100%"),
     277                        input_data.setAttribute("size","50"),
    257278                        input_data.setAttribute("placeholder","Value")
    258279                );
    259         var newtd_c5 = document.createElement("td");
    260                 newtd_c5.setAttribute("width","115");
    261                 newtd_c5.setAttribute("align","center");
    262                 newtd_c5.setAttribute("width","115");
    263                 newtd_c5.setAttribute("align","center");
    264                 newtd_c5.appendChild(
    265                         input_data = document.createElement("input"),
     280                var newtd_c5 = document.createElement("td");
     281                newtd_c5.setAttribute("width", "10%");
     282                newtd_c5.setAttribute("align","center");
     283        newtd_c5.appendChild(
     284                        input_data = document.createElement("input"),
    266285                        input_data.setAttribute("type","button"),
    267286                        input_data.setAttribute("value","Delete"),
     
    277296                newtd_c6.appendChild(newInnertable);
    278297
    279         var newtd_c7 = document.createElement("td");
    280                 newtd_c7.setAttribute("width","115");
     298            var newtd_c7 = document.createElement("td");
     299                newtd_c7.setAttribute("width", "10%");
    281300                newtd_c7.setAttribute("align","center");
    282301                newtd_c7.setAttribute("valign", "top");
     
    306325<?php
    307326$fetch = mysql_query("SELECT * FROM schedule WHERE date(fStart) = '$day' ORDER BY fScheduleID ASC, fMeasurementID ASC") or die(mysql_error());
    308 $observationsTime = mysql_query("SELECT DISTINCT fStart FROM schedule WHERE date(fStart) = '$day'");
     327$observationsTime = mysql_query("SELECT DISTINCT fStart FROM schedule WHERE date(fStart) = '$day' ORDER BY fScheduleID ASC");
    309328$cnt3=0;
    310329$cnt2=0;
     
    314333$cntrow = 0;
    315334$pastdate =  'false';
    316 $pasttime = 'false';
     335$pasttime = 'true';
    317336date_default_timezone_set("UTC");
    318 //$data  = array();
    319 //$counter=0;
    320337        while($times = mysql_fetch_array($observationsTime))
    321338        {
     
    323340            $testdate = date('Y-m-d H:i:s', $times['fStart']);
    324341            $testing = date('Y-m-d H:i', $timestamp);
     342            $curSchedId = $times['fScheduleID'];
    325343            $actualtime = date('Y-m-d H:i:s', $timestamp);
    326             if(strtotime(date('Y-m-d', $timestamp)) == strtotime(date('Y-m-d', time()))) {
    327                 $fetch_next = mysql_query("SELECT * FROM schedule WHERE (fStart > '$testing' AND date(fStart) = '$day') ORDER BY fStart LIMIT 1");
    328                 $next_data = mysql_fetch_array($fetch_next);
    329                 if (mysql_num_rows($fetch_next) > 0) {
    330                     $next_date = strtotime($next_data['fStart']);
    331                     $test = date('Y-m-d H:i', $next_date);
    332                     if(strtotime(date('Y-m-d H:i', $next_date)) > strtotime(date('Y-m-d H:i', time()))) {
    333                         $pasttime = 'true';
    334                     } else {
    335                         $pasttime = 'false';
    336                     }
    337                 } else {
    338                     $pasttime = 'true';
    339                 }
    340             }
    341             else {
    342                 $pasttime = 'false';
    343             }
    344                 $timestamp2 = date('Y-m-d',$timestamp);
    345                 $date_time = date('H:i',$timestamp);
    346                 $prev_time[$cnt3]= $date_time;
    347                
    348 
     344            if($prevday == 'false') {
    349345                if(strtotime(date('Y-m-d H:i', $timestamp)) < strtotime(date('Y-m-d H:i', time()))) {
    350346                    $pastdate = 'true';
     
    353349                    $pastdate = 'false';
    354350                }
     351            }
     352
     353            if(strtotime(date('Y-m-d', $timestamp)) == strtotime(date('Y-m-d', time()))) {
     354                $fetch_next = mysql_query("SELECT DISTINCT fStart FROM schedule WHERE (fStart > '$testing' AND date(fStart) = '$day') ORDER BY fScheduleID ASC LIMIT 1");
     355                $next_data = mysql_fetch_array($fetch_next);
     356                if ($pasttime == 'true') {
     357                    if (mysql_num_rows($fetch_next) > 0) {
     358                        $next_date = strtotime($next_data['fStart']);
     359                        $test = date('H:i', $next_date);
     360                        if(strtotime(date('H:i', $next_date)) <  strtotime(date('H:i', time()))) {
     361                            $pasttime = 'true';
     362                        } else {
     363                            $pasttime = 'false';
     364                        }
     365                    } else {
     366                        $pasttime = 'false';
     367                    }
     368                }
     369                if((strtotime(date('Hi', $timestamp)) >= strtotime('0000')) && (strtotime(date('Hi', $timestamp)) <= strtotime('0800'))) {
     370                   $pastdate = 'false';
     371                }
     372            }
     373            else {
     374                $pasttime = 'false';
     375            }
     376
     377                $date_time = date('H:i', $timestamp);
     378                $prev_time[$cnt3]= $date_time;
     379
    355380                ?>
     381
    356382                    $('#save').attr('value','UPDATE');
    357383                       var targetView = document.getElementById("Data");
     
    389415                                newInnertable.setAttribute("cellspacing","0");
    390416                                newInnertable.setAttribute("cellpadding","0");
    391                        
     417                               
    392418                        var newtd_c1 = document.createElement("td");
    393                                 newtd_c1.setAttribute("width","200");
     419                                newtd_c1.setAttribute("width","15%");
    394420                                newtd_c1.setAttribute("align","center");
    395421                                newtd_c1.setAttribute("valign", "top");
     
    399425                                        input_data.setAttribute("type","time"),
    400426                                        input_data.setAttribute("class","time"),
    401                                         input_data.setAttribute("size","10"),
     427                                        input_data.setAttribute("size","5"),
    402428                                        input_data.setAttribute("value","<?php echo $date_time; ?>"),
    403429                                        input_data.setAttribute("autofocus","true"),
     
    409435                                        input_data.setAttribute("type","time"),
    410436                                        input_data.setAttribute("class","time"),
    411                                         input_data.setAttribute("size","10"),
     437                                        input_data.setAttribute("size","5"),
    412438                                        input_data.setAttribute("value","<?php echo $date_time; ?>"),
    413439                                        input_data.setAttribute("autofocus","true")
     
    418444                                        input_data = document.createElement("input"),
    419445                                        input_data.setAttribute("type","button"),
    420                                         input_data.setAttribute("value","+"),
     446                                                         input_data.setAttribute("value","+"),
     447                                                         input_data.setAttribute("disabled", "disabled"),
    421448                                        input_data.onclick = function(){
    422449                                            addRowCloneNew("list_<?php echo $cnt; ?>");
     
    433460                                        }
    434461                                    );
    435                                 <?php } else { ?>
     462                                <?php } else {  ?>
    436463                                    newtd_c1.appendChild(
    437464                                        input_data = document.createElement("input"),
     
    442469                                        }
    443470                                );
    444                                 <?php } }
     471                                <?php }}
    445472                        $observations = mysql_query("SELECT * FROM schedule WHERE fStart = '$actualtime'");
    446473
     
    455482                        <?php if ($pastdate == 'true') { ?>                                                   
    456483                                var newtd_c2 = document.createElement("td");
    457                                 newtd_c2.setAttribute("width","138");
     484                                newtd_c2.setAttribute("width","20%");
    458485                                newtd_c2.setAttribute("align","center");
    459486                                <?php   
    460487                                   $cur_measurement = $rows[fMeasurementTypeKey];
    461                                    $selectm = mysql_query("SELECT fMeasurement FROM measurement WHERE fMeasurementKey = '$cur_measurement'");
     488                                   $selectm = mysql_query("SELECT * FROM measurement WHERE fMeasurementKey = '$cur_measurement'");
    462489                                   $rowmeasure = mysql_fetch_array($selectm);
    463490                                ?>
    464491                                newtd_c2.appendChild(
    465                                    selection = document.createElement("input"),
    466                                    selection.setAttribute("value", "<?php echo $rowmeasure['fMeasurement']; ?>"),
    467                                    selection.setAttribute("type","text"),
    468                                    selection.setAttribute("class","selected"),
    469                                    selection.setAttribute("size", "12"),
    470                                    selection.setAttribute("placeholder", "Value"),
    471                                    selection.setAttribute("disabled", "disabled")
    472                                 );
    473                                 newtd_c2.setAttribute("width","115");
    474                                 newtd_c2.setAttribute("align","center");
     492                                   selection = document.createElement("select"),
     493                                                     selection.appendChild(
     494                                                     option = document.createElement("option"),
     495                                                     option.appendChild(document.createTextNode("<?php echo $rowmeasure['fMeasurement']; ?>")),
     496                                                    option.setAttribute("value", "<?php echo $rowmeasure['fMeasurementKey']; ?>"),
     497                                                    option.setAttribute('selected', true)
     498                                   ),
     499                                   selection.setAttribute('id', 'measure'),
     500                                   selection.setAttribute('class','measure'),
     501                                   selection.setAttribute('disabled', 'disabled'),
     502                                                     selection.setAttribute("style", "width:100px")
     503                                   );
    475504                                newtd_c2.appendChild(
    476505                                        input_data = document.createElement("input"),
     
    484513
    485514                                var newtd_c3 = document.createElement("td");
    486                                 newtd_c3.setAttribute("width","98");
     515                                newtd_c3.setAttribute("width","20%");
    487516                                newtd_c3.setAttribute("align","center");
    488517                                <?php
    489518                                $cur_source = $rows['fSourceKey'];
    490                                 $select = mysql_query("SELECT fSourceName FROM source WHERE fSourceKey = '$cur_source'");
    491                                 $rowsource = mysql_fetch_array($select); ?>
     519                                $select = mysql_query("SELECT *  FROM source WHERE fSourceKey = '$cur_source'");
     520                                if(mysql_num_rows($select)<1) {
     521                                    $sourcename = '---';
     522                                    $sourcekey = 0;
     523                                }
     524                                else {
     525                                    $rowsource = mysql_fetch_array($select);
     526                                    $sourcename = $rowsource['fSourceName'];
     527                                    $sourcekey = $rowsource['fSourceKey'];
     528                                }?>
    492529                                newtd_c3.appendChild(
    493                                    selection = document.createElement("input"),
    494                                    selection.setAttribute("value", "<?php echo $rowsource['fSourceName']; ?>"),
    495                                    selection.setAttribute("type","text"),
    496                                    selection.setAttribute("class","selected"),
    497                                    selection.setAttribute("size", "12"),
    498                                    selection.setAttribute("placeholder", "Value"),
    499                                    selection.setAttribute("disabled", "disabled")
     530                                   selection = document.createElement("select"),
     531                                                     selection.appendChild(
     532                                                     option = document.createElement("option"),
     533                                                     option.appendChild(document.createTextNode("<?php echo $sourcename; ?>")),
     534                                                    option.setAttribute("value", "<?php echo $sourcekey; ?>"),
     535                                                    option.setAttribute('selected', true)
     536                                   ),
     537                                   selection.setAttribute('id', 'source'),
     538                                   selection.setAttribute('class','source'),
     539                                   selection.setAttribute('disabled', 'disabled'),
     540                                                     selection.setAttribute("style", "width:120px")
     541                                   
    500542                                );
    501543
    502544                                var newtd_c4 = document.createElement("td");
    503                                 newtd_c4.setAttribute("width","119");
     545                                newtd_c4.setAttribute("width","50%");
    504546                                newtd_c4.setAttribute("align","center");
    505547                                newtd_c4.appendChild(
     
    507549                                        input_data.setAttribute("type","text"),
    508550                                        input_data.setAttribute("class","selected"),
    509                                         input_data.setAttribute("size","12"),
     551                                        input_data.setAttribute("size","50"),
    510552                                        input_data.setAttribute("value","<?php echo $rows['fData']; ?>"),
    511553                                        input_data.setAttribute("placeholder","Value"),
    512                                         input_data.setAttribute("disabled", "disbaled")
     554                                        input_data.setAttribute("disabled", "disabled")
    513555                                );
    514556
    515557                                var newtd_c5 = document.createElement("td");
    516                                 newtd_c5.setAttribute("width","115");
    517                                 newtd_c5.setAttribute("align","center");
    518                                 newtd_c5.setAttribute("width","115");
     558                                newtd_c5.setAttribute("width", "10%");
    519559                                newtd_c5.setAttribute("align","center");
    520560                                newtd_c5.appendChild(
     
    529569                        <?php } else  { ?>
    530570                                var newtd_c2 = document.createElement("td");
    531                                 newtd_c2.setAttribute("width","138");
     571                                newtd_c2.setAttribute("width","20%");
    532572                                newtd_c2.setAttribute("align","center");
    533573                                newtd_c2.appendChild(
     
    548588                                   ?>
    549589                                   selection.setAttribute('id','measure'),
    550                                    selection.setAttribute('class','measure')
     590                                       selection.setAttribute('class','measure'),
     591                                       selection.setAttribute("style", "width=100px")
    551592                                );
    552                                 newtd_c2.setAttribute("width","115");
    553                                 newtd_c2.setAttribute("align","center");
    554593                                newtd_c2.appendChild(
    555594                                        input_data = document.createElement("input"),
     
    562601
    563602                                var newtd_c3 = document.createElement("td");
    564                                 newtd_c3.setAttribute("width","98");
     603                                newtd_c3.setAttribute("width","20%");
    565604                                newtd_c3.setAttribute("align","center");
    566605                                newtd_c3.appendChild(
    567606                                selection = document.createElement("select"),
     607                                selection.appendChild(
     608                                        option = document.createElement("option"),
     609                                        option.setAttribute('value', 0),
     610                                        <?php
     611 if($rows['fSourceKey'] == 0) { echo "option.setAttribute('selected', true),"; }?>
     612                                        option.appendChild(document.createTextNode("---"))),
    568613                                <?php
    569614                                $select = mysql_query("SELECT * FROM source");
     615                                                     
    570616                                while($rowsource = mysql_fetch_array($select))
    571617                                {
     
    574620                                        option = document.createElement("option"),
    575621                                        option.setAttribute('value','<?php echo $rowsource['fSourceKEY']; ?>'),
    576                                         <?php if($rows['fSourceKey'] == $rowsource['fSourceKEY']){ echo "option.setAttribute('selected',true),"; } ?>
     622                                        <?php if($rows['fSourceKey'] == $rowsource['fSourceKEY']){
     623                                            echo "option.setAttribute('selected',true),";
     624                                        }?>
    577625                                        option.appendChild(document.createTextNode("<?php echo $rowsource['fSourceName']; ?>"))
    578626                                        ),
     
    581629                                ?>
    582630                                selection.setAttribute('id','source'),                                                                                                                                                  // End of retrieving
    583                                 selection.setAttribute('class','source')                                                                                                                                                        // End of retrieving
     631                                    selection.setAttribute('class','source'),
     632                                    selection.setAttribute("style", "width=100px")// End of retrieving
    584633                                );
    585634
    586635                                var newtd_c4 = document.createElement("td");
    587                                 newtd_c4.setAttribute("width","119");
     636                                newtd_c4.setAttribute("width","50%");
    588637                                newtd_c4.setAttribute("align","center");
    589638                                newtd_c4.appendChild(
     
    591640                                        input_data.setAttribute("type","text"),
    592641                                        input_data.setAttribute("class","selected"),
    593                                         input_data.setAttribute("size","12"),
     642                                        input_data.setAttribute("size","50"),
    594643                                        input_data.setAttribute("value","<?php echo $rows['fData']; ?>"),
    595644                                        input_data.setAttribute("placeholder","Value")
     
    597646
    598647                                var newtd_c5 = document.createElement("td");
    599                                 newtd_c5.setAttribute("width","115");
    600                                 newtd_c5.setAttribute("align","center");
    601                                 newtd_c5.setAttribute("width","115");
    602                                 newtd_c5.setAttribute("align","center");
    603                                 newtd_c5.appendChild(
     648                                newtd_c5.setAttribute("width", "10%");
     649                                newtd_c5.setAttribute("align","center");
     650                                newtd_c5.appendChild(
    604651                                        input_data = document.createElement("input"),
    605652                                        input_data.setAttribute("type","button"),
     
    625672                        newtd_c6.appendChild(newInnertable);
    626673
    627                         var newtd_c7 = document.createElement("td");
    628                                 newtd_c7.setAttribute("width","115");
    629                                 newtd_c7.setAttribute("align","center");
     674                            var newtd_c7 = document.createElement("td");
     675                        newtd_c7.setAttribute("width", "10%");
     676                        newtd_c7.setAttribute("align","center");
    630677                                newtd_c7.setAttribute("valign", "top");
    631678                                <?php if ($pastdate == 'true') { ?>
     
    658705                        }else{
    659706                                targetView.appendChild(newdiv<?php echo $cnt;?>);
    660                                 //$(targetView).after(newtr<?php echo $cnt; ?>);
    661707                        }
    662708        <?php
     
    664710if(mysql_num_rows($fetch)<1)
    665711{
     712    if(strtotime(Date('Y-m-d', strtotime($day))) >= strtotime(Date('Y-m-d'))) {
    666713?>
    667714        $('#save').attr('value','SAVE');
    668         addRowCloneNew();
     715        addRowCloneNew();
     716        $('#LoadPrev').removeAttr("disabled");
     717        $('#save').removeAttr("disabled");
    669718<?php
     719    }
     720    else {?>
     721        $('#LoadPrev').attr('disabled', 'disabled');
     722        $('#save').attr('disabled', 'disabled');
     723<?php    }
    670724}
    671 
    672725?>
    673                        
    674726}
    675 
    676 $('#LoadPrev').click(function() {
    677 if(transPrevNight == 1) {
    678   $('#Scheduling').load('Module/Scheduling.php?days=<?php echo $prevday;?>');
    679   transPrevNight = 0;
    680 }
    681 });
    682 
    683727</script>
    684728       
Note: See TracChangeset for help on using the changeset viewer.