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

[Solved] RadGrid Postback Issue

1 Answer 109 Views
Grid
This is a migrated thread and some comments may be shown as answers.
sabarishbabu
Top achievements
Rank 1
sabarishbabu asked on 07 Oct 2009, 12:01 PM
Hi,

In my page, am having many tabs.Within every tab, Grids are available.

Grids are having insert/edit/delete operations. While inserting/editing/deleting , the page fully got  postback.

In order to reduce the page postback  am using radajaxmanger,i put following lines

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="grdIssues">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="grdIssues" />                        
                    </UpdatedControls>
                </telerik:AjaxSetting>
                <telerik:AjaxSetting AjaxControlID="grdMessages">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="grdMessages" />                        
                    </UpdatedControls>
                </telerik:AjaxSetting>
                <telerik:AjaxSetting AjaxControlID="grdLinks">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="grdLinks" />                        
                    </UpdatedControls>
                </telerik:AjaxSetting>
                <telerik:AjaxSetting AjaxControlID="grdManufacturers">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="grdManufacturers" />                        
                    </UpdatedControls>
                </telerik:AjaxSetting>              
               
            </AjaxSettings>
        </telerik:RadAjaxManager>

But sometimes, it is working.Mostly page postback is happening while doing grid(insert/edit) operations.
i dont want postback while doing grid insert/edit/delete .

and how can i put the ajax update controls for tabs and Grids?tabs may be the problem?

Thanks for your help

1 Answer, 1 is accepted

Sort by
0
Veli
Telerik team
answered on 07 Oct 2009, 02:50 PM
Hi sabarishbabu,

Try configuring RadAjaxManager in the following way:

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
    <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="RadTabStripID"
            <UpdatedControls> 
                <telerik:AjaxUpdatedControl ControlID="RadTabStripID" /> 
                <telerik:AjaxUpdatedControl ControlID="RadMultiPageID" /> 
            </UpdatedControls> 
        </telerik:AjaxSetting> 
    </AjaxSettings> 
</telerik:RadAjaxManager> 
 


In the above example RadTabStripID is the ID of your RadTabStrip control containing your tabs, while RadMultiPageID is the ID of the RadMultiPage with the multiple PageViews containing your grids.

Greetings,
Veli
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
Grid
Asked by
sabarishbabu
Top achievements
Rank 1
Answers by
Veli
Telerik team
Share this question
or