I've added a radlistview to a page, with a radrating control inside of it. It's displaying about 330 records.
I then went ahead and put the radlistview in an radupdate panel, but i can't see any difference in how the page behaves. I then went ahead and added a rad loading panel to the page. And still i can't see any difference to the page. I left initial delay and min display at 0, no effect. Changed min display to 2000, no effect.
Here's what my aspx markup looks like:
I then went ahead and put the radlistview in an radupdate panel, but i can't see any difference in how the page behaves. I then went ahead and added a rad loading panel to the page. And still i can't see any difference to the page. I left initial delay and min display at 0, no effect. Changed min display to 2000, no effect.Here's what my aspx markup looks like: (i deleted the template content for brevity). Can anyone tell me what i might be doing wrong here? This is with the 2011 Q2 release.
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<div class="list_view_cont">
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"
Skin="Default" AnimationDuration="1000" IsSticky="True" Transparency="50">
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server"
HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1" >
<telerik:RadListView ID="RadListView1" runat="server" ItemPlaceholderID="gameList"
DataSourceID="sqlDsGames" DataKeyNames="ID,Rating"
onitemcreated="RadListView1_ItemCreated">
<LayoutTemplate>
<ul>
<li class="row_header">
<div class="row_name">
<h2><asp:LinkButton ID="lbtnTitle" CommandName="Sort" CommandArgument="Title" runat="server">MMO Title</asp:LinkButton></h2>
</div><!--end row name-->
<div class="row_genre">
<h2><asp:LinkButton ID="lbtnCategory" CommandName="Sort" CommandArgument="Category" runat="server">Genre</asp:LinkButton></h2>
</div><!--end row genre-->
<div class="row_release">
<h2><asp:LinkButton ID="lbtDate" CommandName="Sort" CommandArgument="ReleasedDate" runat="server">Release Date</asp:LinkButton></h2>
</div><!--end row release-->
<div class="row_platform">
<h2><asp:LinkButton ID="lbtPlatform" CommandName="Sort" CommandArgument="Platform" runat="server">Platform</asp:LinkButton></h2>
</div><!--end row platform-->
<div class="row_rating">
<h2><asp:LinkButton ID="lbtnRating" CommandName="Sort" CommandArgument="Rating" runat="server">Rating</asp:LinkButton></h2>
</div><!--end row rating-->
<div class="row_votes">
<h2>
<asp:LinkButton ID="lbtnVotes" CommandName="Sort" CommandArgument="Votes" runat="server">Votes</asp:LinkButton></h2>
</div><!--end row votes-->
</li>
<fieldset id="gameList" runat="server" />
</ul>
</LayoutTemplate>
<ItemTemplate>
</ItemTemplate>
<AlternatingItemTemplate>
</AlternatingItemTemplate>
</telerik:RadListView>
</telerik:RadAjaxPanel>
</div>