In our application we use the xamDockManager. Unfortunately in floating mode some keyboard events does not work like they do in docked mode.
For example navigating the ui elements with tab does not work anymore.
Another example is that the data grid we use, does not react on enter when the cell ist in edit mode (to confirm and set the typed value).
Do you have any ideas how to solve these problems?
Thanks in advance
Stef
stef3004 said:In our application we use the xamDockManager. Unfortunately in floating mode some keyboard events does not work like they do in docked mode.
stef3004 said: For example navigating the ui elements with tab does not work anymore.
stef3004 said: Another example is that the data grid we use, does not react on enter when the cell ist in edit mode (to confirm and set the typed value).
I'm not sure what you are describing here. Are you sure it is not that you have hooked a key event of the main window or ancestor of the contentpane and since it's not receiving the key events it won't do that action?
I figured out the problem: We set the isFocusScope property of the content pane to false.
This is made to enable some other important functionality within our application (keyboard focus should be kept in the text box where it was before moving to another content pane; values entered in the text box update their binding source)
The strange thing is, that tabbing works fine if the content pane is docked. In floating mode tabbing is not possible anymore.
I attached a small test solution to verify the problem.
Thanks,