We are designing a UI where we use a series of DoubleEditBoxes to change parameters and would like to be able to move between them quickly without brining up the onscreen keyboard too much.
Right now if you have the soft keyboard up then bring up the popout on the DoubleEditBox, the soft keyboard will close because the text portion of the control lost focus. However when you tap outside of the popup to dismiss it, focus returns to the text and the soft keyboard returns. We would like it such that when you either dismiss the popup or focus a new control the keyboard doesn't return.
The only way I've thought of to do this is to subscribe an event to the pop up being created (or dismissed) which gives focus to some fictive object which doesn't invoke the soft keyboard. Is there an event handler or some other way on this control which I could do this?
Smaller question as well, is there a way to change the InputScope to numer on the DoubleEditBox?
Thanks for your time.