Can JavaScript detect when a textbox has changed its validity status, as shown in the image? If all validations in a row are valid, we want to hide that row. However, if any validation in that row is not valid, we want to show it.
Currently, I am considering using onblur for each textbox, but I'm wondering if there is a more effective approach available.