when one is adding an inline entity for a relation of a single card,
the 'add a new xxx' link disappears. If the user then cancel the addition,
we have to make this link appears back. This is done by giving add new link
id to removeInlineForm.
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);
}