web/data/cubicweb.lazy.js
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Thu, 02 Apr 2009 15:19:43 +0200
branch894685124c68
changeset 1213 06789a89f91f
parent 559 7cfd3d11edc8
child 5658 7b9553a9db65
permissions -rw-r--r--
adding action to startup schema view. this action enables to download owl view


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);
}