I notice that lots of times, when changing the value of a control in an 
interact and the interact updates, the notebook automatically scrolls up 
so that the interact is only partially shown.  I think that what is 
happening is the focus is changing to a previous cell or something.  I 
get this happening when I change the second interact in the following 
worksheet, for example (interact is from kcrisman's post on sage-support).

This is in FF3.0.1 on Ubuntu 8.04.  Does anyone else experience this 
jumping of the notebook when an interact control is changed?

Thanks,

Jason





interact test
system:sage

{{{id=0|
@interact
def _(k=slider(0,5,1,1)):
     P1=plot(lambda x: x^k, 0,1)
     show(P1)
///

<html><!--notruncate--><div padding=6 id='div-interact-0'> <table 
width=800px height=20px bgcolor='#c5c5c5'
                  cellpadding=15><tr><td bgcolor='#f9f9f9' valign=top 
align=left><table><tr><td align=right><font color="black">k 
</font></td><td><table><tr><td>
        <div id='slider-k-0' class='ui-slider ui-slider-3' 
style='margin:0px;'><span class='ui-slider-handle'></span></div>
        </td><td><font color='black' 
id='slider-k-0-lbl'></font></td></tr></table><script>(function(){ var 
values = ["0","1","2","3","4","5"]; setTimeout(function() {
     $('#slider-k-0').slider({
        stepping: 1, min: 0, max: 5, startValue: 1,
        change: function (e,ui) { var position = ui.value; 
if(values!=null) $('#slider-k-0-lbl').text(values[position]); 
interact(0, "sage.server.notebook.interact.update(0, \"k\", 1, 
sage.server.notebook.interact.standard_b64decode(\""+encode64(position)+"\"), 
globals())"); },
        slide: function(e,ui) { if(values!=null) 
$('#slider-k-0-lbl').text(values[ui.value]); }
     });
     if(values != null) 
$('#slider-k-0-lbl').text(values[$('#slider-k-0').slider('value')]);
     }, 1); })();</script></td></tr>
</table><div id='cell-interact-0'><?__SAGE__START>
         <table border=0 bgcolor='#white' width=100% height=100%>
         <tr><td bgcolor=white align=left 
valign=top><pre><?__SAGE__TEXT></pre></td></tr>
         <tr><td  align=left valign=top><?__SAGE__HTML></td></tr>
         </table><?__SAGE__END></div></td>
                  </tr></table></div>
                  </html>
CPU time: 0.00 s,  Wall time: 0.01 s
}}}

{{{id=1|
@interact
def _(k=slider(0,5,1,1)):
     P1=plot(lambda x: x^k, 0,1)
     show(P1)
///

<html><!--notruncate--><div padding=6 id='div-interact-1'> <table 
width=800px height=20px bgcolor='#c5c5c5'
                  cellpadding=15><tr><td bgcolor='#f9f9f9' valign=top 
align=left><table><tr><td align=right><font color="black">k 
</font></td><td><table><tr><td>
        <div id='slider-k-1' class='ui-slider ui-slider-3' 
style='margin:0px;'><span class='ui-slider-handle'></span></div>
        </td><td><font color='black' 
id='slider-k-1-lbl'></font></td></tr></table><script>(function(){ var 
values = ["0","1","2","3","4","5"]; setTimeout(function() {
     $('#slider-k-1').slider({
        stepping: 1, min: 0, max: 5, startValue: 1,
        change: function (e,ui) { var position = ui.value; 
if(values!=null) $('#slider-k-1-lbl').text(values[position]); 
interact(1, "sage.server.notebook.interact.update(1, \"k\", 2, 
sage.server.notebook.interact.standard_b64decode(\""+encode64(position)+"\"), 
globals())"); },
        slide: function(e,ui) { if(values!=null) 
$('#slider-k-1-lbl').text(values[ui.value]); }
     });
     if(values != null) 
$('#slider-k-1-lbl').text(values[$('#slider-k-1').slider('value')]);
     }, 1); })();</script></td></tr>
</table><div id='cell-interact-1'><?__SAGE__START>
         <table border=0 bgcolor='#white' width=100% height=100%>
         <tr><td bgcolor=white align=left 
valign=top><pre><?__SAGE__TEXT></pre></td></tr>
         <tr><td  align=left valign=top><?__SAGE__HTML></td></tr>
         </table><?__SAGE__END></div></td>
                  </tr></table></div>
                  </html>
}}}

{{{id=2|

///
}}}


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to