I am new to .Net and RadControls. I am using your RagGrid on my ASP.NET 2.0 webpage. I want Ajax enabled grid, that will not use server resources on sorting, paging etc... Do I need to create ASP.NET AJAXEnabled website instead of ASP.Net Website for this purpose or your grid has built in Ajax functionlaity (no need of any coding).
My second question is my RadGrid takes time to load. I used your RadAjaxPanel the way it was shown in tutorial.
<telerik:RadAjaxManager EnableAJAX="true" ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</
telerik:RadAjaxManager>
But the problem is it works fine after the grid is loaded and appear on page and I can see the loading image if I do any sorting, paging etc... but I need this loading panel work while my grid is loading the very first time after a button click (I bind my grid on a button click). How do I do that?
I saw your old version of grid has:
|
EnableAJAX="True" EnableAJAXLoadingTemplate="True" |
|
LoadingTemplateTransparency="20" But how I do this in your new version of telerik:radgrid.Thanks. |