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

'The Method or Operation is not Implemented' Eroor with RadAjaxManager

2 Answers 144 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Neelima
Top achievements
Rank 1
Neelima asked on 12 Jan 2011, 05:46 PM
I have a button 'btnSave', a ModalPopup 'mpuEditAddr', and a TabContainer 'tabGridview' with 2 panels each containing a gridview.

'mpuEditAddr' has two usercontrols 'uc_Address'

On btnSave Click I'm getting 'The method or operation is not implemented' error with the below code.
Any suggestions on where I'm going wrong would be greatly appreciated!!

<

 

telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">

 

 

<AjaxSettings>

 

 

<telerik:AjaxSetting AjaxControlID="btnSearch" EventName="Click">

 

 

<UpdatedControls><telerik:AjaxUpdatedControl ControlID="tabGridview" /></UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

<telerik:AjaxSetting AjaxControlID="RadGrid1">

 

 

<UpdatedControls><telerik:AjaxUpdatedControl ControlID="RadGrid1" /></UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

<telerik:AjaxSetting AjaxControlID="RadGrid1" EventName="SlectedIndexChanged">

 

 

<UpdatedControls><telerik:AjaxUpdatedControl ControlID="mpuEditAddr" /></UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

</AjaxSettings>

 

 

</telerik:RadAjaxManager>

 

<asp:Button ID="btnSearch" runat="server" Text="Search/ Refresh" />
  
  
  <asp:Button ID="btnEditAddr" runat="server" Text="Button" Style="display: none" />
    <asp:ModalPopupExtender ID="mpuEditAddr" runat="server" OkControlID="btnClose" TargetControlID="btnEditAddr"
        PopupControlID="panAddr" BackgroundCssClass="modalBackground">
    </asp:ModalPopupExtender>
    <asp:Panel ID="panAddr" runat="server" CssClass="ModalWindow" Style="display: none">
        <asp:TabContainer ID="tabAddress" runat="server" Width="10%" ActiveTabIndex="1">
            <asp:TabPanel ID="tabPickupAddr" runat="server">
                <HeaderTemplate>
                    Pickup Address
                </HeaderTemplate>
                <ContentTemplate>
                    <uc1:uc_Address ID="uc_PickupAddr" runat="server" />
                </ContentTemplate>
            </asp:TabPanel>
            <asp:TabPanel ID="tabDpoffAddr" runat="server">
                <HeaderTemplate>
                    Dropoff Address
                </HeaderTemplate>
                <ContentTemplate>
                    <uc1:uc_Address ID="uc_DropoffAddr" runat="server" />
                </ContentTemplate>
            </asp:TabPanel>
        </asp:TabContainer>
        <asp:Button ID="btnUpdateAddr" runat="server" Text="Update" />
        <asp:Button ID="btnClose" runat="server" Text="Close" CausesValidation="False" />
    </asp:Panel>
  
  
 <asp:TabContainer ID="tabGridview" runat="server">
        <asp:TabPanel ID="tabEdit" runat="server" HeaderText="Edit Reservations">
            <HeaderTemplate>
                Edit Reservations</HeaderTemplate>
            <ContentTemplate>
                <telerik:RadGrid ID="RadGrid1" runat="server" AllowSorting="True" ShowGroupPanel="True" AllowFilteringByColumn="true"
                    AutoGenerateColumns="False" AllowPaging="True" >
                    <GroupingSettings ShowUnGroupButton="True" />
                    <ClientSettings AllowDragToGroup="True" AllowColumnsReorder="True" ColumnsReorderMethod="Reorder"
                        ReorderColumnsOnClient="True">
                        <ClientEvents OnRowContextMenu="RowContextMenu"></ClientEvents>
                    </ClientSettings>
                    <MasterTableView EditMode="InPlace" DataKeyNames="Trip_ID" GroupLoadMode="Client" AllowFilteringByColumn="true">
                        <PagerStyle AlwaysVisible="true" />
                        <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings>
                        <Columns>
                            <telerik:GridEditCommandColumn ButtonType="ImageButton">
                            </telerik:GridEditCommandColumn>
                            <telerik:GridButtonColumn CommandName="Select" Text="Edit Address" ButtonType="ImageButton"
                                UniqueName="column" ImageUrl="Images/Home-Edit.gif">
                            </telerik:GridButtonColumn>
                           '
                           '
                           '
  
  </Columns>
                        <EditFormSettings>
                            <EditColumn UniqueName="EditCommandColumn1">
                            </EditColumn>
                        </EditFormSettings>
                    </MasterTableView><HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Sunset"
                        EnableImageSprites="True">
                    </HeaderContextMenu>
                </telerik:RadGrid>
            </ContentTemplate>
        </asp:TabPanel>
<asp:TabPanel ID="tabView" runat="server" HeaderText="View Reservations">
            <ContentTemplate>
 <%--Another RadGrid Here--%>
  </ContentTemplate>
        </asp:TabPanel>
    </asp:TabContainer>



2 Answers, 1 is accepted

Sort by
0
Neelima
Top achievements
Rank 1
answered on 12 Jan 2011, 06:12 PM
I modified the RadAjaxManager part. Now I'm not getting the error  but when the RadGrid's SelectedIndex changes, ModalPopup 'mpuEditAddr' is expected to show up with the UserControl 'uc_Address' along with 'Update' and 'cancel' buttons.  But I see only the two buttons and not the UserControl.
0
Iana Tsolova
Telerik team
answered on 17 Jan 2011, 11:18 AM
Hi Neelima,

In order to isolate the issue further I would suggest that you comment any RadControls on the page. Make usre you are using an ASP:ScriptManager and ajaxify the page with ASP:UpdatePanel. Run the page and see if the problem persists. Thus we will see if the issue comes from any of the RadControls for ASP.NET AJAX or it is connected with the AjaxControlToolkit controls.

Best wishes,
Iana
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Ajax
Asked by
Neelima
Top achievements
Rank 1
Answers by
Neelima
Top achievements
Rank 1
Iana Tsolova
Telerik team
Share this question
or