web/data/cubicweb.lazy.js
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 17 Sep 2009 16:16:00 +0200
branch3.5
changeset 3294 5047b2566634
parent 559 7cfd3d11edc8
child 5658 7b9553a9db65
permissions -rw-r--r--
do not wipe a good value if input is bad and cancelled


function load_now(eltsel, holesel, reloadable) {
    var lazydiv = jQuery(eltsel);
    var hole = lazydiv.children(holesel);
    if ((hole.length == 0) && !reloadable) {
	/* the hole is already filled */
	return;
    }
    lazydiv.loadxhtml(lazydiv.attr('cubicweb:loadurl'));
}

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