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

I have implemented CoverFlowMode using Radrotator, as there are huge records I am implemeting paging manually using RadAjaxManager Ajax Request.

1 Answer 23 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
Neeraj
Top achievements
Rank 1
Neeraj asked on 28 Nov 2011, 01:26 PM

I have implemented CoverFlowMode using Radrotator, as there are huge records I am implemeting paging manually using RadAjaxManager Ajax Request on button click.

But the RadRotator is not getting updated with next records using RadAjaxManager. How can I update Radrotator CoverFlowMode  with RadAjaxManager.

Below is the code
aspx file code

<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">

 

<script type="text/javascript">

 

function ClientClicked() {

$find(

<%= rmStudentList.ClientID %>").ajaxRequest("NEXT");
return false;

 }
</script>
</telerik
:RadCodeBlock >

 

 

 

<div class="mainDiv">
<asp:Panel ID="RotatorWrapper" runat="server" CssClass="rotWrapper">

<telerik:RadRotator ID="RadRotator1" runat="server" Width="748px" ItemWidth="150"

ScrollDirection="Left, Right" Height="233px" ItemHeight="113" ScrollDuration="500"

FrameDuration="2000" PauseOnMouseOver="false" RotatorType="CoverFlow" InitialItemIndex="4"

OnClientItemShown="OnClientItemShown" OnClientItemClicked="OnClientItemClicked"

CssClass="RemoveRotatorBorder">
<ItemTemplate>

<asp:Image ID="Image1" runat="server" ImageUrl='<%# GetImagePath(Eval("ImagePath")) %>'

AlternateText='<%# Eval("LastName") %>' />

</ItemTemplate>

</telerik:RadRotator>

<input id="Button1" type="button" runat="server" value="Next" onclick="ClientClicked(); return false;" />

</asp:Panel>

</div>

cs file

 

protected void rmStudentList_AjaxRequest(object sender, AjaxRequestEventArgs e)

{

ConfigureRadRotator(RotatorType.CoverFlowButtons);

}

 

 

 

 

 

 

 

1 Answer, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 30 Nov 2011, 03:48 PM
Hi Neeraj,

I have already answered your question in your support ticket and in the other forum thread that you have opened. You can refer to it for a solution to the encountered problem.

Please use a separate support ticket for every issue you want to report in the future. This way our conversation will be much easier to follow, which will lead to faster results. I would suggest continuing our discussion in your support ticket, concerning the problem at hand.  

All the best,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
Rotator
Asked by
Neeraj
Top achievements
Rank 1
Answers by
Slav
Telerik team
Share this question
or