i am trying to build a scroller just like the one on the demo page but instead of multiple i only want 1 scroller. however, i want to be able to generate data on the server side and then add the column in as i want. is there a way for me to do that?
i have included an image of the demo on your page hope fully that will help explaining what i'm trying to do. thanks
i have included an image of the demo on your page hope fully that will help explaining what i'm trying to do. thanks
i have this and it doesn't display anything. can you help me please. thanks
<telerik:RadRotator ScrollDirection="left" FrameDuration="1" Width="435" ItemWidth="145" Height="24" ItemHeight="24" |
ScrollDuration="2000" ID="Rotator1" runat="server"> |
</telerik:RadRotator> |
Dim rs As SqlDataReader = clsGenerateReport.top20_ticker()
Dim dt As New DataTable
dt.Load(rs)
Rotator1.DataSource = dt
Rotator1.DataBind()