Ignore:
Timestamp:
02/02/09 08:07:49 (15 years ago)
Author:
niltonneto
Message:

Implementações do desenvolvedor. amuller@…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoCalendar/js/calendar_functions.js

    r632 r656  
    99        this.nextView; 
    1010        this.previousView; 
     11        this.uid = calUid; 
    1112} 
    1213 
     
    121122        viewType = type; 
    122123        screenTable = new Array(); 
    123         XMLTools.request('$this.uicalendar.getView'+type+(data?data:''), 'GET', handler_getView);   
     124        XMLTools.request('$this.uicalendar.getView'+type+(data?data:'')+'&uid='+this.uid, 'GET', handler_getView);   
    124125}; 
    125126 
     127Calendar.prototype.resetView = function() 
     128{ 
     129        document.getElementById("div_main").innerHTML = ""; 
     130} 
    126131 
    127132Calendar.prototype.parseView = function(data,type) 
Note: See TracChangeset for help on using the changeset viewer.