Javascript : waiting box display when exporting in PDF or CSV

This commit is contained in:
sparkyx 2021-04-18 14:22:20 +02:00
parent 05da3e2791
commit fe8f13b1bc

View file

@ -4052,4 +4052,15 @@ function download_document(p_url)
waiting_box();
document.location=p_url;
remove_waiting_box();
}
}
/**
* @brief download a document from a form
*/
function download_document_form(p_form_id)
{
waiting_box();
var url="export.php?"+$(p_form_id).serialize();
document.location=url;
remove_waiting_box();
return false;
}