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

RadGrid with ModalPopupExtender

1 Answer 97 Views
Grid
This is a migrated thread and some comments may be shown as answers.
ghadeer
Top achievements
Rank 1
ghadeer asked on 06 Jan 2009, 11:04 AM
Hi ALL,
I have a RadGrid inside the panel ,which I attached to ModalPopupExtender as PopupControl,the problem that when I click on the nextpage  of the radgrid the popup disappear !!!!!!!????


thank in advance
ghadeer

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 09 Jan 2009, 11:25 AM
Hi Ghadeer,

I assume that the problem is due to the fact that the page postbacks on changing the page. A suggestion is to ajaxify the RadGrid to prevent the page postback. Try the following example by using RadAjaxManager in order to overcome this.

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

Thanks,
Princy.
Tags
Grid
Asked by
ghadeer
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or