Hi Donald,
When WrapFrames is set to false and you are using buttons with the rotator, the corresponding button will be automatically disabled once the items are rotated to the end.
For example you can examine the following setup. Note that the height and the width of the rotator must be 40 pixels larger than the values set in the Width / Height properties - this is needed because the buttons are 20px in width and height:
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
|
<telerik:RadRotator |
ScrollDirection="Up,Down" |
Width="200px" |
Height="140px" |
ItemHeight="100px" |
WrapFrames="false" |
RotatorType="Buttons" |
ItemWidth="200px" |
DataSourceID="AccessDataSource1" |
ID="rotator1" |
runat="server"> |
<ItemTemplate> |
<%# DataBinder.Eval(Container.DataItem, "ProductName")%> |
</ItemTemplate> |
</telerik:RadRotator> |
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/Nwind.mdb" |
SelectCommand="SELECT TOP 3 [ProductName], [UnitPrice], [UnitsInStock] FROM [Alphabetical List of Products]"> |
</asp:AccessDataSource> |
</form> |
</body> |
</html> |
The result can be seen in the attached movie.
Sincerely yours,
Georgi Tunev
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.