Changeset 16338 for schedule/Module/calendar.php
- Timestamp:
- 05/27/13 17:23:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16337 r16338 120 120 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 121 121 } 122 xmlhttp.onreadystatechange=function( )122 xmlhttp.onreadystatechange=function(data) 123 123 { 124 124 if (xmlhttp.readyState==4 && xmlhttp.status==200) … … 126 126 127 127 Data[src]= new Array(); 128 var str=""; 128 129 line=xmlhttp.responseText.split('\n'); 129 130 for(row=0;row<line.length;row++) 130 131 { 131 132 rows=line[row].split(','); 132 Data[src][row]=rows[4]; 133 document.getElementById('data').innerHTML=Data[0][row]; 133 str+=Data.push(rows[4]); 134 134 } 135 //GraphData.apply(src,Data); 135 return str; 136 136 137 } 137 138 } … … 140 141 xmlhttp.send(); 141 142 } 142 /*function GraphData(src,data) 143 { 144 document.getElementById('data').innerHTML=data[]; 145 }*/ 143 144 document.getElementById('data').innerHTML=xmlhttp[0]; 145 146 146 147 147
Note:
See TracChangeset
for help on using the changeset viewer.