I am using radscriptmanager with 2010 q1 telerik ajax release
<telerik:RadScriptManager runat="server" EnableScriptCombine="false">
<AuthenticationService Path="~/Services/SpendusAuthService.asmx" />
<Scripts>
<asp:ScriptReference Path="~/js/logon.js"/>
</Scripts>
</telerik:RadScriptManager>
In the logon.js file I need to disable ajaxtoolkit validator, and used to like this
if (AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout != null) {
AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout.hide();
}
But I am getting AjaxControlToolkit not defined. This is the only thing not working from my .net 3.5 conversion. Any help greatly appreciated
<telerik:RadScriptManager runat="server" EnableScriptCombine="false">
<AuthenticationService Path="~/Services/SpendusAuthService.asmx" />
<Scripts>
<asp:ScriptReference Path="~/js/logon.js"/>
</Scripts>
</telerik:RadScriptManager>
In the logon.js file I need to disable ajaxtoolkit validator, and used to like this
if (AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout != null) {
AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout.hide();
}
But I am getting AjaxControlToolkit not defined. This is the only thing not working from my .net 3.5 conversion. Any help greatly appreciated