This is a migrated thread and some comments may be shown as answers.

RadAjaxManager1_AjaxRequest does not fire on IE

3 Answers 64 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Cem Sisman
Top achievements
Rank 1
Cem Sisman asked on 30 Dec 2009, 02:27 PM

 
                if (confirm("Are you sure want to delete this data?")) { 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("DeleteNow:" + data.innerHTML); 
 
                    alert("Deleted"); // if i dont have this, ajaxRequest is not triggered, with this alert box it is. 
                     
                } else { return false; } 

3 Answers, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 04 Jan 2010, 01:49 PM
Hi Cem,

Please try to change your code as shown bellow and let me know if the issue still persist:
if (confirm("Are you sure want to delete this data?")) {  
var dataHtml = data.innerHTML;                    
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("DeleteNow:" + dataHtml);  
    
                    alert("Deleted");
                        
                } else { return false; }

Additionally, for more information please review the listed online resources:
http://www.telerik.com/help/aspnet-ajax/ajxradajaxmanagerclientobject.html
http://www.telerik.com/help/aspnet-ajax/ajxaddajaxrequesttoclientevent.html

Kind regards,
Pavlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Cem Sisman
Top achievements
Rank 1
answered on 04 Jan 2010, 04:36 PM
I changed the code as shown above, still doesn't work if I remove alert('deleted'), It works on firefox and chrome regardless.

thanks
0
Pavlina
Telerik team
answered on 05 Jan 2010, 02:41 PM
Hi Cem,

Can you please open a formal support ticket and send us a simple working project with reproduced this erroneous behavior? Thus we could debug it locally and turn back with a proper solution for you.

Thank you the cooperation in advance.

Greetings,
Pavlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Ajax
Asked by
Cem Sisman
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Cem Sisman
Top achievements
Rank 1
Share this question
or