An input control which is switched to DesignMode via its OnFocus event lose focus, but does not fire OnBlur, nor does it fire OnFocus again (which is good) if it regains focus, e.g. by user interaction.
The control should remain focused while DesignMode loads.
The problem is probably the last part which is not able to change focus from the outer container to the editable area. IE8 might require this to be postponed using setTimeout. Take care not to cause an error if control is disposed once timer executes (make sure 'me' is not null first!)!
An input control which is switched to DesignMode via its OnFocus event lose focus, but does not fire OnBlur, nor does it fire OnFocus again (which is good) if it regains focus, e.g. by user interaction.
The control should remain focused while DesignMode loads.
Related code:
https://github.com/Jemt/Fit.UI/blob/fcbaa5fb4524b4f677e03882e803966f31563a09/Controls/Input/Input.js#L945
and
https://github.com/Jemt/Fit.UI/blob/fcbaa5fb4524b4f677e03882e803966f31563a09/Controls/Input/Input.js#L988
The problem is probably the last part which is not able to change focus from the outer container to the editable area. IE8 might require this to be postponed using setTimeout. Take care not to cause an error if control is disposed once timer executes (make sure 'me' is not null first!)!