I am trying to create an event handler to listen to when a particular field changes on one of my screens. When the event handler is triggered, I would like to know which screen triggered the event handler to be called. In JavaScript, there is a concept of using the keyword "this" to know which item triggered the event.
For example:
buttons = $(".button");
buttons.on("click", onClick);
function onClick()
{
$(this).text()
}
In the above example, I used "this" to know which of the buttons was clicked. Is there a way to do this when using the
observeField() method?