I'm making use of a bunch of InputFormTextBoxes and I'd like to have an onblur event get fired when the box is no longer in focus. This is when RichText == true.
This is because I have a Sharepoint Webpart that has a lot of editable areas and richtext is required. However, the screen gets cluttered if they are all available. So I'm making it autosave and hide the text box when the user clicks away. This saves screen real estate, and improves the page performance greatly.
I can get this to work with RichText == false, so it's just a normal TextArea HTML control. However, I can't set focus with JavaScript on the textarea, and I can't get an event to fire for the onblur event.