Javascript : waiting box display when exporting in PDF or CSV
This commit is contained in:
parent
05da3e2791
commit
fe8f13b1bc
1 changed files with 12 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue