Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello All,


I got 'AjaxControlToolkit is undefined error' error.

when

C#
if (AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout != null)
 {
                AjaxControlToolkit.ValidatorCalloutBehavior._currentCallout.hide();
 }




here i just hide the callout extender message...

Please give me solution..
Posted
Updated 24-Jan-12 0:02am
v2
Comments
Menon Santosh 24-Jan-12 5:58am    
plz post the error message
madhuri@mumbai 25-Jan-12 0:45am    
'AjaxControlToolkit is undefined error' this is error message.

Hi friends,


I have find alternative solution for this problem,
Solution is:
C#
if(Sys.Extended.UI.ValidatorCalloutBehavior._currentCallout != null)
{
 Sys.Extended.UI.ValidatorCalloutBehavior._currentCallout.hide();
}

Good Day!!!
 
Share this answer
 
v2
Comments
Prasad_Kulkarni 25-Jan-12 1:05am    
Then click on green button 'Accept Solution' so others will come to know that question is solved.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900