I am using a RadGrid with the following settings.
It is calling a stored procedure that takes 4 seconds to run in PL/SQL developer. When I hook it up to the RadGrid it takes 40 seconds to load 10 X greater. When I use a regular GridView it takes 8 seconds. What is the RadGrid doing to slow the grid creation and how can I make it faster?
There are anywhere from 10-400 rows being returned.
.Net 3.5 and Ajax 2008 Q-2
Thank you!
<telerik:RadGrid ID="RadGrid1" |
AllowMultiRowSelection="True" |
AllowSorting="True" |
AllowPaging="False" |
AllowNaturalSort ="True" |
AutoGenerateColumns="False" |
AlternatingItemStyle-HorizontalAlign="Center" |
BackColor="#ffffff" |
HeaderStyle-HorizontalAlign="Center" |
ItemStyle-HorizontalAlign="Center" |
GridLines="None" |
GroupingEnabled="True" |
Height="370px" |
OnSortCommand="RadGrid1_SortCommand" OnNeedDataSource="RadGrid1_NeedDataSource" OnItemDataBound="RadGrid1_ItemDataBound" |
OnItemCommand="RadGrid1_ItemCommand" |
ShowHeader="True" |
ShowGroupPanel="True" |
ShowStatusBar="True" |
ShowFooter="False" |
Skin="MySkin" |
EnableEmbeddedSkins="False" |
Width="98%" |
runat="server"> |
It is calling a stored procedure that takes 4 seconds to run in PL/SQL developer. When I hook it up to the RadGrid it takes 40 seconds to load 10 X greater. When I use a regular GridView it takes 8 seconds. What is the RadGrid doing to slow the grid creation and how can I make it faster?
There are anywhere from 10-400 rows being returned.
.Net 3.5 and Ajax 2008 Q-2
Thank you!