Having an issue in adjusting the play interval for a slideshow after it has started playing... I'm using the following code...
function SlowInterval_Click()
{
var sse2 = $find('<%= SlideShowExtender1.ClientID %>');
alert(sse2.get_playInterval());
var newinterval = sse2.get_playInterval() + 5000;
sse2.set_playInterval(newinterval);
alert(sse2.get_playInterval());
}
intitiated by...
<input id="Button2" type="button" value="Slower" onclick="SlowInterval_Click();" />
The first alert shows "1000" which is how I configured SlideShowExtender1 and the second alert shows "6000" which is what I'd expect. But the slideshow keeps displaying at the 1 sec rate. If I click the "slower" button before the slide show loads the first image (via a web service following the example on the videos)... it works. I have also tried disabling and re-enabling the timer as well.
Any assistance is appreciated...
Thanks
--Scott
Comments: This ticket was filed for a pre-15.1 version of AJAX Control Toolkit. If this is still an issue in v15.1 or later, please file a new issue.
function SlowInterval_Click()
{
var sse2 = $find('<%= SlideShowExtender1.ClientID %>');
alert(sse2.get_playInterval());
var newinterval = sse2.get_playInterval() + 5000;
sse2.set_playInterval(newinterval);
alert(sse2.get_playInterval());
}
intitiated by...
<input id="Button2" type="button" value="Slower" onclick="SlowInterval_Click();" />
The first alert shows "1000" which is how I configured SlideShowExtender1 and the second alert shows "6000" which is what I'd expect. But the slideshow keeps displaying at the 1 sec rate. If I click the "slower" button before the slide show loads the first image (via a web service following the example on the videos)... it works. I have also tried disabling and re-enabling the timer as well.
Any assistance is appreciated...
Thanks
--Scott
Comments: This ticket was filed for a pre-15.1 version of AJAX Control Toolkit. If this is still an issue in v15.1 or later, please file a new issue.