I have an UpdatePanel that contains a timer and an infragistics webtree and when the timer fire the data is being postback (great). I also have a link that pops up a window using good old javascript window.open(...) (great). Here's the not so great. When the postback occurs and a node in the tree is selected with the javascript window open, it goes to the background. I tried turning off the timer (Timer1.Enabled=false), but that didn't work. Any suggestion is welcome
<script runat="server">
protected stopTimer() {
timer1.Enabled=false;
}
</script>
<script type="text/javascript">
function stopTheTimer() {
stopTimer();
}
</script>