Hello
I am using an old version of radgrid (q3 2008) but i hope you can still help me. I have a radgrid on a content page which i am trying to ajaxify. The basic page elements are a search form with a submit button and an asp panel which contains a radgrid. The panel and grid are initially hidden (visible=false) on page load. When the submit button is clicked the grid is loaded with content and the panel is set visible = true. I put the panel and grid inside a rad ajax panel like so...
There is a radajaxmanager on the page like so
When the submit button is clicked the whole page reloads rather than just the grid. Is there somethign wrong with my set up? I can ajaxify the grid inside an asp.net updatepanel but i need to export the grid so I believe i need to use the rad ajax panel
thanks a lot
I am using an old version of radgrid (q3 2008) but i hope you can still help me. I have a radgrid on a content page which i am trying to ajaxify. The basic page elements are a search form with a submit button and an asp panel which contains a radgrid. The panel and grid are initially hidden (visible=false) on page load. When the submit button is clicked the grid is loaded with content and the panel is set visible = true. I put the panel and grid inside a rad ajax panel like so...
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" HorizontalAlign="NotSet"><asp:Panel ID="pnlGrid" runat="server" Visible="true"><telerik:RadGrid ID="gridJourneys" runat="server" Width="960px" AutoGenerateColumns="False" GridLines="None" skin="SureTrack" ShowFooter="True" Visible="False" EnableEmbeddedSkins="False">..rest of grid</telerik:RadGrid></asp:Panel></telerik:RadAjaxPanel>There is a radajaxmanager on the page like so
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"><AjaxSettings><telerik:AjaxSetting AjaxControlID="btnSubmit"><UpdatedControls><telerik:AjaxUpdatedControl ControlID="RadAjaxPanel1" /></UpdatedControls></telerik:AjaxSetting></AjaxSettings></telerik:RadAjaxManager>When the submit button is clicked the whole page reloads rather than just the grid. Is there somethign wrong with my set up? I can ajaxify the grid inside an asp.net updatepanel but i need to export the grid so I believe i need to use the rad ajax panel
thanks a lot