Displaying 1 result from an estimated 1 matches for "loadingdiv".
2005 Oct 03
0
Prototype Ajax.Request (onLoading and onSuccess) question
...'' + t.statusText); myxa.removeCalendar(t);}                            
         
                                    }
                                );
 },
onLoading: function() {
  var calTable = $(''calendar'').getElementsByTagName(''table'')[0];
  var loadingDIV = myxa.getLoadingDIV(Element.getHeight(calTable));
  Element.hide(loadingDIV);
  $(''calendar'').appendChild(loadingDIV);
  Element.toggle(calTable, loadingDIV);
 },
 getLoadingDIV: function(height) {
  if (undefined == height) {
   height = 135;
  }
  var loading = document.createE...