on 2014 Sep 23 6:20 PM
I have a process that interrogates the visible entries in a table and carries out certain alerts and functions. The SORT event of the table triggers when the SORT is clicked and not after the Sort is complete. I need to a way to determine when the sort is complete so I can interrogate the visible entries in the table. I can't seem to find an event SORT COMPLETE on the table.
Does anyone have any ideas?
Request clarification before answering.
I'm using the (undocumented) event "_rowsUpdated" on the table.
-- Micha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you grep for fireEvent in the sources, there is a lot of them. Perhaps SAP is going to document all of them? Then we might find out if there is one that could serve the purpose, too 🙂
-- Micha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thomas,
Does it work if you add following on sort event handler
SetTimeout(function(){interrogateTable()},0);
Of course, it would work only in case sort worked synchronously.
Another option would be to extend Table method responsible for sorting and dispatchinh sort complete yourself.
Regards,
Kimmo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.