web/data/cubicweb.lazy.js
author sylvain.thenault@logilab.fr
Fri, 30 Jan 2009 12:29:37 +0100
changeset 522 385ce5e0b30b
parent 485 0f830732be19
child 543 c0f2b6378f70
permissions -rw-r--r--
cubicweb__loadurl -> cubicweb:lazyloadurl


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:lazyloadurl');
  /* 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);
}