Changeset 16453 for schedule


Ignore:
Timestamp:
05/30/13 07:54:46 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16452 r16453  
    111111                                                        for(sources=0;sources<source.length;sources++)
    112112                                                                  {
    113                                                                  
     113                                                                  alert(sources);
    114114                                                                if (window.XMLHttpRequest)
    115115                                                                  {// code for IE7+, Firefox, Chrome, Opera, Safari
    116116                                                                  xmlhttp=new XMLHttpRequest();
    117117                                                                  }
    118                                                                   alert(sources);
     118                                                                 
    119119                                                                else
    120120                                                                  {// code for IE6, IE5
     
    139139                                                                                       
    140140                                                                                       
    141                                                                                         GraphData(Data,sources);
     141                                                                                        //GraphData(Data,sources);
    142142                                                                                        //document.getElementById('data').innerHTML=Data[sources];
    143143                                                                        }
     
    147147                                                                xmlhttp.send();
    148148                                                                document.getElementById('data').innerHTML=source.length+""+source[sources];
     149                                                                               
    149150                                                                }
     151                                                               
     152                                                        GraphData(Data,source.length);
    150153                                                       
    151154                                                        function GraphData(array, index)
    152155                                                        {
    153                                                                 for(i=0;i<array[index].length;i++)
     156                                                                for(i=0;i<index;i++)
    154157                                                                {
    155                                                                        
    156                                                                                 document.getElementById('day').innerHTML=array[index];
    157                                                                        
     158                                                                        for(j=0;j<array[i].length;j++)
     159                                                                {
     160                                                                        document.getElementById('day').innerHTML=array[index];
     161                                                                }
     162                                                               
    158163                                                                }
    159164                                                        }
Note: See TracChangeset for help on using the changeset viewer.