Open
Description
I wrote some custom javascript that runs calculations and total from rows that are rendered in sync, and I need to re-run the calculations when anything on the page changes. I hooked into jQuery's global ajaxComplete
to update the calculations for my own AJAX stuff, but I am not finding any kind of similar global syncUpdate
, etc. event to listen on for changes to the page from sync. Is there a way this can be added? Like some type of event fired on document
that I can listen to for anytime a row is added, updated, or deleted with sync?