Hello, I'm running version 3Q 2009 of the ASP.NET AJAX controls. I wanted to implement the Rotator with index buttons as in this tutorial
http://demos.telerik.com/aspnet-ajax/rotator/examples/pagerintegration/defaultcs.aspx
however, I'm getting a javascript error Object does not support method or property when the JS function tries to excute the line
oRotator.set_currentItemIndex(index);
I did a "Quick Watch" using the visual studio debugger and noticed that that this function is missing from the available functions. Is this feature not available in 3Q 2009 version? if not is there a workaround to display buttons to represent each slide and then have those buttons clicked to display the corresponding slide in the rotator?
function
showItemByIndex(index)
{
// get reference to the rotator object
var
oRotator = $find(
"<%= RadRotator1.ClientID %>"
);
// Set currently shown item by its index
oRotator.set_currentItemIndex(index);
}
Thanks
Cliff