How to - PDF form, "after change" event handling.
I have forms that perform quite complex operations and calculations based on the entered data (text fields, combo boxes, radio fields). Calling the function each time the focus is lost introduces unnecessary delays in operation, because in such a situation I perform a complicated and time-consuming analysis even though nothing has changed (and this is the case in 90% of cases when the event after the loss of focus is triggered). In fact, I need to implement a handler for the "after change" event, which is not explicitly in the field properties. What's the best way to accomplish something like this? I'm asking because I feel like I'm doing something wrong, and there's probably a simpler way to do it.
