Hello Telerik Team,
I am getting one error in javascript displaying as "OnClientClose " is undefined.
Below are the steps.
1) I am opening a popup through the below code:
Till here its no problem it works perfectly, but as soon as I put this line of of code in javascript shown below
< src="../../includes/validate.js">
It fires the above message saying OnClientClose is undefined on status bar of IE.
If removed the above line again it works perfectly.
Can anyone Please suggest any solution for this.
Regards
Sudhakar
I am getting one error in javascript displaying as "OnClientClose " is undefined.
Below are the steps.
1) I am opening a popup through the below code:
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
VisibleStatusbar
=
"false"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"TaskList"
runat
=
"server"
Title
=
"TaskList"
modal
=
"true"
OnClientClose
=
"OnClientClose"
></
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
//Call a javacript code
<
script
type
=
"text/javascript"
>
function OnClientClose(oWnd, args)
{
oWnd.setUrl("XYZ.aspx");
}
</
script
>
< src="../../includes/validate.js">
It fires the above message saying OnClientClose is undefined on status bar of IE.
If removed the above line again it works perfectly.
Can anyone Please suggest any solution for this.
Regards
Sudhakar