I have third system that fills a field by zooming. Below this zoom I have a grid of products (my specific). I need to include a product on this grid whenever the system fills this product field. However, there is no customization point that can intercept the moment the product is zoomed in.
The question is: How can I detect that the field value has changed (remembering that this is changed via javascript)? I've already tried using the events: bind
and on
of jquery to no avail. Another gambiarrenta alternative was to use settimeout
. For now I'm looking for a more elegant way to solve this situation.
Has anyone ever had anything like this?