ipysheet icon indicating copy to clipboard operation
ipysheet copied to clipboard

Jupyter handsontable integration

Results 84 ipysheet issues
Sort by recently updated
recently updated
newest added

Is there any way to get which cell's value is changed recently in a column, so that i can send that cell location to calculate and fill in a specified...

Version: https://github.com/QuantStack/ipysheet/commit/e285b95c689774cbd2459317d3fb61e44a86c553 ```python import ipysheet import ipywidgets as widgets sheet = ipysheet.Sheet(rows=2, columns=2) sheet.cells = ( ipysheet.Cell(value='', row_start=1, row_end=1, column_start=0, column_end=0), ipysheet.Cell(value='', row_start=1, row_end=1, column_start=1, column_end=1) ) sheet ``` To...

Bug

It would be very convenient to be able to create an ipywidget from a pandas dataframe and at the same time pass the display options (width and height, and perhaps...

As pointed out in #93 and #112, creating an empty sheet, editing it and using `to_dataframe` or `to_array` to export the result does not work. Because those functions are `Cell`...

Bug

Maybe I'm misunderstanding this, but from what I can tell all the constructors for ipysheet.sheet, ipysheet.cell, ipysheet.row, ipysheet.column constructors add everything to the globals() namespace. Is there a way to...

Hello, I was trying to create an EDA tool of sorts using widgets available on jupyter notebook and came across this package. It was all working great until I was...

I'd like to change the `fillHandle` setting for the underlying Handsontable. Is that possible? Seems like it would need to be exposed [here](https://github.com/QuantStack/ipysheet/blob/42375111dbe30b2c27e402930a517956418189db/js/src/sheet.ts#L400).

![Screenshot from 2020-05-07 01-00-42](https://user-images.githubusercontent.com/61955364/81259747-3876db00-8ffe-11ea-8684-8beb324b9fb2.png) When I click on the button "Plot me Scotty", the numbers in the cells become zeros If I print the values of x & y I...

Version 0.4.4, ipywidgets 7.5.1 if I instantiate a spreadsheet with 10 rows, 8 columns, populate it with data via cell_range, all is good. if I then try to reduce the...

Hello, I'd like to find out when a cell or the sheet is selected. Any way to do it? Thanks.