i have the following code in place
but when i run the code, it give me the following javascript error
"ajaxManager has no properties"
when am I missing?
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID = "RadAjaxManager1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID ="GridAct" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| function refreshTasks() |
| { |
| var ajaxManager = $find("RadAjaxManager1"); |
| ajaxManager.AjaxRequest('RebindTasks'); |
| } |
| Protected Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest |
| If e.Argument = "RebindTasks" Then |
| GridAct.Rebind() |
| End If |
| End Sub |
but when i run the code, it give me the following javascript error
"ajaxManager has no properties"
when am I missing?