Hi
We have a RadWindow with few controls in it. On a ButtonClientClick event we want to (in Javascript) open a child window that is
1) a radWindow
2) is non-modal to allow focus on parent window whild child window is visible and is on top
3) allow the child window to be dragged outside the parent window.
I can only achieve either 1) and 2) OR 3) but not all.
====================================================================================================
-- gives me a non-modal window but cannot be dragged outside the parent window.
====================================================================================================
We have a RadWindow with few controls in it. On a ButtonClientClick event we want to (in Javascript) open a child window that is
1) a radWindow
2) is non-modal to allow focus on parent window whild child window is visible and is on top
3) allow the child window to be dragged outside the parent window.
I can only achieve either 1) and 2) OR 3) but not all.
====================================================================================================
w = window.showModelessDialog(
url, "NewWindow", "status:true; dialogWidth: 380px; dialogHeight: 200px;", '');
-- gives me a non-modal window but cannot be dragged outside the parent window.
====================================================================================================
====================================================================================================
w = GetRadWindow().BrowserWindow.radopen(url, "NewWindow");
-- creates a non-RadWindow which is modal but can be dragged outside the parent.
How do I create a child window that has all 3 properties?
Thanks
Raka
====================================================================================================