[IPython-dev] Playing with cells in the notebook... and some problems.

Matthias BUSSONNIER bussonniermatthias at gmail.com
Thu Aug 8 02:26:22 EDT 2013


Le 8 août 2013 à 08:01, Damián Avila a écrit :

> In this way, I get the a copy of the cell but it is not executable…


Yes it is, Shift-Enter is just not bound to it. 
Shift-Enter is handled by IPython.notebook and is bound to execute selected cell

As notebook object does nt know of your cell, you are just sending the execute request to the wrong cell.

adding this : 

window.ccell = cell;

and then ccell.execute() in JSconsole works.

-- 
M

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ipython-dev/attachments/20130808/23c22476/attachment.html>


More information about the IPython-dev mailing list