Thats the event that triggers when you see the message ‘Processing’, with a small rotating circle.
When SC navigates on a grid, or you select additional lines from the lines per page box, it triggers a grid refresh using an ajax/javascript function, rather than any formal grid refresh.
Because of this , things like the on-Navigate event don’t allow you to use jQuery or javascript(It says so in the manual and I can confirm this is correct).
It means that some jQuery I use for DOM manipulation (I can’t use css for what I need before you ask), only works on the first page and I can’t find a way to repeat it during the ajax refresh. I’ve tried the code in EVERY event including onRecord!
It seems like I need to find a way to trigger it from the ajax refresh.
Has anyone found or solved this problem, or has any ideas?