Is there an offClick?

I have a page where the user can type in information to a text box, and then relevant information appears in a table below it. When the user clicks off the text box I want the table to disappear. Is there an offClick function or will I have to do onClick functions for everything else that the user could click on the page?

Hi,

In this case, I would suggest using the onBlur() function . This function is an event handler that runs when the element loses focus.
Try out the onBlur() function for what you are trying to accomplish. If it isn’t right for what you are trying to do, go through the textInput API reference and see if any of those functions work as well.

Best Regards,
Edward

That appears to work, thank you.