I have this situation where my textfield is embedded within a TableViewRow like this http://cl.ly/1i372j0Q062H010L2O0y
I wanted a situation when someone click on the "Password" row, I will focus on the Password Textfield and when someone click on anywhere else in the window, the password will get blur().
However, the problem comes in when both Window.click and PasswordRow.click got fired when the user clicks on the PasswordRow. This make the textfield.focus() and textfield.blur() got executed, resulting is no focus at all.
Anyway I can workaround it? Or is there a better way to blur it than to listen to Window.click?
Cheers, Mickey