I have fixed the problem with the loadpanel breaking after resizing.
Instead of calling reload() we call setURL() withthe origional parameter..
Works like a charm.
 
See Demo:
 
 
 l.onresize=function(e) {
  var o=e.getTarget();
  if (!o.created || o.isReloading) return;
  //Doug Melvin: Works now after resizing.
  //if (o.autoH && o.url) o.reload();
  if (o.autoH && o.url) o.setURL(o.url);
 };

Reply via email to