web/data/cubicweb.lazy.js
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Wed, 28 Jan 2009 16:49:57 +0100
changeset 501 567e85e646d8
parent 485 0f830732be19
child 522 385ce5e0b30b
permissions -rw-r--r--
removing OWLView from this file (in order to put OWLView into owl module)


function load_now(eltsel, holesel) {
  var lazydiv = jQuery(eltsel);
  var hole = lazydiv.children(holesel);
  if (hole.length == 0) /* the hole is already filled */
    return;
  var vid_eid = lazydiv.attr('cubicweb__loadurl');
  /* XXX see what could be done with jquery.loadxhtml(...)   */
  var later = async_rawremote_exec('lazily', vid_eid);
  later.addCallback(function(req) {
    var div = lazydiv[0];
    div.appendChild(getDomFromResponse(req));
    div.removeChild(hole[0]);
  });
  later.addErrback(function(err) {
    log(err);
  });
}

function trigger_load(divid) {
  jQuery('#lazy-' + divid).trigger('load_' + divid);
}