I'm trying to use a PublishingWebControls:RichHtmlField control in a custom application page inside SharePoint to use the built in SharePoint WYSIWYG editor. It's almost working but SharePoint has some javascript functionality built in to focus the first RichHtmlField on the page.
My control is the 3rd from the top and I don't want to move the control to the top. The other controls are regular asp.net controls like TextBox.
Setting the HasInitialFocus="FALSE" property doesn't work since if no RichHtmlField with the previously mentioned property was found set to TRUE the first RichHtmlField control gains focus and ribbon goes into "WYSIWYG" mode.
I've tried overriding the javascript doing this but wasn't able to. Do someone have a solution for this? Is there some other control I can use?