I’ve an application that has many modal windows. But, one window is modal less and use for diagnostic update. Both windows are created from main application window (parent). So, when I open the diagnostic window (modal less) and then open a modal window, I can’t select and handle diagnostic window.
Is there any way to handle both modal and modal less window with both of them are displayed?
Thanks.
No, anytime that you create a modal window, it becomes the central focus of your application. Any clicks outside of the modal window will not be registered. If you really need both to be accessible, then you will have to make both modeless.