Changeset 16513 for schedule


Ignore:
Timestamp:
05/31/13 06:53:15 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16512 r16513  
    114114
    115115                                        index = xmlhttp.length - 1;
    116                                         document.getElementById('data').innerHTML="XML request is in the array! ";
     116                                        $('#data').append('XML request is in the array! ');
     117                                        //document.getElementById('data').innerHTML="XML request is in the array! ";
    117118
    118119                                }
    119120
    120                                 function getXMLData()
    121                                 {
    122                                         getXML();
    123                                         xmlhttp[index].onreadystatechange=xmlStateChange();
    124                                         document.getElementById('data').innerHTML="XML data were taken! ";
    125 
    126                                         xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true);
    127                                         xmlhttp[index].send();
    128                                 }
    129                                
    130121                                function xmlStateChange()
    131122                                {
     
    135126                                                //sourceData[index]= new Array(); //--> remove this if you use sourceData[[]]
    136127                                                line=xmlhttp[index].responseText.split('\n');
    137                                                 document.getElementById('data').innerHTML="XML value has changed!";
     128                                                $('#data').append('XML value has changed!');
     129                                                //document.getElementById('data').innerHTML="XML value has changed!";
    138130                                                document.getElementById('data').innerHTML=xmlhttp[index].responseText;
    139131
     
    145137                                                        document.getElementById('data').innerHTML=line;
    146138                                                }
    147                                                
    148                                        
     139                                                       
    149140                                }
    150141
     142                                function getXMLData()
     143                                {
     144                                        getXML();
     145                                        xmlhttp[index].onreadystatechange=xmlStateChange();
     146                                        $('#data').append('XML data were taken');
     147                                        //document.getElementById('data').innerHTML="XML data were taken! ";
     148
     149                                        xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true);
     150                                        xmlhttp[index].send();
     151                                }
     152                               
     153                               
    151154                                function displayData() //--> you can use the content of this function in the event listener
    152155                                {
     
    162165                                                         month =this.selection.print("%m").join("\n");
    163166                                                        year =this.selection.print("%Y").join("\n");   
    164                                                         document.getElementById('data').innerHTML="Calendar selected! ";
     167                                                        //document.getElementById('data').innerHTML="Calendar selected! ";
     168                                                        $('#data').append('XML data were taken');
    165169
    166170       
Note: See TracChangeset for help on using the changeset viewer.