Changeset 16332


Ignore:
Timestamp:
05/27/13 17:06:48 (12 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16330 r16332  
    125125                                                                        {
    126126                                                                               
    127                                                                                         line[src]=xmlhttp.responseText.split('\n');
    128                                                                                         GraphData.apply(0,line);
     127                                                                                        Data[src]= new Array();
     128                                                                                        line=xmlhttp.responseText.split('\n');
     129                                                                                        for(row=0;row<line.length;row++)
     130                                                                                        {
     131                                                                                                rows=line[row].split(',');
     132                                                                                                Data[src].push(rows[4]);
     133                                                                                        }
     134                                                                                        GraphData(Data);
    129135                                                                        }
    130136                                                                }
     
    133139                                                                xmlhttp.send();
    134140                                                        }
    135                                                         function GraphData(arr,l)
     141                                                        function GraphData(data)
    136142                                                        {
    137                                                                 document.getElementById('data').innerHTML=l[arr];
     143                                                                document.getElementById('data').innerHTML=data;
    138144                                                        }
    139145                                                       
Note: See TracChangeset for help on using the changeset viewer.