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

Problems updating (with ajax) RadGrid inside of RadTab

1 Answer 33 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Andres
Top achievements
Rank 1
Andres asked on 05 Feb 2009, 07:35 PM
Hi everybody

I've been trying to update a RadGrid (with ajax) that is inside of a Tab (The RadTab has 3 tabs), the object that fires the update is a RadComboBox (with the SelectedIndexChanged method) inside of another Tab, but I can't. Some tips please. Thanks.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 06 Feb 2009, 06:26 AM
Hi Anders,

Try placing the entire Tabstrip inside a RadAjaxPanel  or use RadAjaxManager where you can set the AjaxControlID as button and  AjaxUpdatedControl  - ControlID as RadGrid.

ASPX:
 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"  > 
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="Button1"
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
            </telerik:RadAjaxManager> 

Frequently Asked Questions
Control is not updated after AJAX



Thanks
Shinu



Tags
Grid
Asked by
Andres
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or