7 Answers, 1 is accepted
0
Hello Elton,
You can achieve this the same way as with the "regular" RadWindow. Please, take a look at this help article and also refer to the attached project. Let me know if you have other questions.
Sincerely yours,
Petya
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
You can achieve this the same way as with the "regular" RadWindow. Please, take a look at this help article and also refer to the attached project. Let me know if you have other questions.
Sincerely yours,
Petya
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Elton
Top achievements
Rank 1
answered on 24 Oct 2007, 12:21 AM
Thanks very much Petya,
!
!
0
Bryan Brannon
Top achievements
Rank 2
answered on 29 Jan 2008, 06:21 PM
How do i close a window that was opened like this:
function openRadWindow() {
var oWnd = radopen('Dialog/Test.aspx', 'DialogWindow');
}
I am using a custom button to open a window:
function openRadWindow() {
var oWnd = radopen('Dialog/Test.aspx', 'DialogWindow');
}
I am using a custom button to open a window:
<
rad:RadWindow id="DialogWindow"
Title="Unit Messages"
Modal="true"
Runat="server"
Width="400px"
Height="400px"
Skin="Vista"
Behavior="Close">
</rad:RadWindow>
0
Bryan Brannon
Top achievements
Rank 2
answered on 29 Jan 2008, 06:30 PM
Sorry, I figured it out. My javascript was not formed correctly:
GetRadWindow().close()
Instead of:
GetRadWindow().Close()
0
Mark Thomas
Top achievements
Rank 1
answered on 20 Feb 2008, 01:53 PM
Hi,
I thought it was along the same lines as this thread, so I wouldn't open an almost similar thread...
I have a similar issue, but on Finish of my Wizard in a RadWindow I do a lot of stuf in my Wizard1_FinishButtonClick event and at the end of this I want to close the window. How can I obtain a reference to the RadWindow and close it here?
Should I attach some clientside script and call at the end or is there a better way?
Regards,
Mark.
I thought it was along the same lines as this thread, so I wouldn't open an almost similar thread...
I have a similar issue, but on Finish of my Wizard in a RadWindow I do a lot of stuf in my Wizard1_FinishButtonClick event and at the end of this I want to close the window. How can I obtain a reference to the RadWindow and close it here?
Should I attach some clientside script and call at the end or is there a better way?
Regards,
Mark.
0
Hi Mark,
I believe that the following KB article will be of help in your case:
http://www.telerik.com/support/kb/article/b454K-ggt-b454T-cec-b454c-cec.aspx
Please check the code provided there and use it as a base in your implementation.
Greetings,
Georgi Tunev
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
I believe that the following KB article will be of help in your case:
http://www.telerik.com/support/kb/article/b454K-ggt-b454T-cec-b454c-cec.aspx
Please check the code provided there and use it as a base in your implementation.
Greetings,
Georgi Tunev
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Mark Thomas
Top achievements
Rank 1
answered on 20 Feb 2008, 02:52 PM
Hi,
Thanks. That was exactly what I had... The issue was an old AjaxSetting that was there ... for the wizard updating itself... removing this fixed it.
Mark.
Thanks. That was exactly what I had... The issue was an old AjaxSetting that was there ... for the wizard updating itself... removing this fixed it.
Mark.