I have a WebAsyncRefreshPanel that contains a div with an image control in it. The idea is that the image will change every 10 seconds unless the mouse is over it which triggers a tooltip with information. After the mouse is moved off of the image the refreshes should resume.
In the mouseover event of the div I use setTimer(0) to stop the refreshes which works fine. In the mouseout event I use setTimer(10000) and refresh()...this triggers the refresh the first time but it doesn't refresh after the 10 seconds has elapsed. If I move the mouse back over the image and then off again it again triggers the refresh but only once. Am I missing something here.
<script type="text/javascript">
var panel;
panel.setTimer(0);
}
panel.setTimer(10000);
panel.refresh();
</script>
<igmisc:WebAsyncRefreshPanel ID="WebRefreshPanel" Width="550px" Height="412px" runat="server"
RefreshInterval="10000" RefreshTargetIDs="lblTesting,DestImg">
<div id="divImg" runat="server" onmouseover="BLOCKED SCRIPTdivImg_MouseOver();" onmouseout="BLOCKED SCRIPTdivImg_MouseOut();" >
<asp:Image title="" ID="DestImg" runat="server"/>
</div>
<input runat="server" type="hidden" id="hdnIndex" value="1" />
</igmisc:WebAsyncRefreshPanel>
I have the same problem, infragistics told me that's it's a bug.
Did they mention when they were going to fix it?