Description
How can we catch the event when the Excel upload is ready ?
I have tested the "SVFormRowInserted" function, see below for sample but there are some problems with this:
function SVFormRowInserted(rowContainer, rowNumber) {
log.info("SVFormRowInserted was triggered. rowNumber: " + rowNumber);
}
- If I perform an Excel upload using the "Replace" option, this SVFormRowInserted gets triggered once in the beginning of the upload but it may still take a long time until the upload actually completes. I tried this also together with some timers but I cannot really be sure when the upload is done.
- If I perform an Excel upload using the "Append" option, SVFormRowInserted does not get triggered at all which is not what I would had expected, meaning this function does not help at all in this case.
What would be the way to achieve this ?
If there is no "standard" way of catching the "Excel_upload_completed" event pls provide at least some way to achieve it, thanks
Applies To
11x;12x
Solution/Immediate Workaround
There is no as such separate method. However you can use the below function to check. Press F12 from keyboard to reach the below screen.
Comments
0 comments
Please sign in to leave a comment.