ipywidgets icon indicating copy to clipboard operation
ipywidgets copied to clipboard

Interactive Widgets for the Jupyter Notebook

Results 312 ipywidgets issues
Sort by recently updated
recently updated
newest added

The widget list currently contains: - `FloatSlider`: floating-point value linear slider - `FloatLogSlider`: floating-point value log slider - `FloatRangeSlider`: floating-point range linear slider Problem is, there is no widget that...

### Problem Buttons are not highly customizable as far as I'm aware and this seems to significantly limit the GUI design options with Ipywidgets. For example, I tried to create...

feature request
pkg:ipywidgets
pkg:controls
needs discussion

https://github.com/jupyter-widgets/ipywidgets/blob/84abba08bd242133b63fe992ebc65b8358b8b2f9/python/ipywidgets/ipywidgets/widgets/widget_datetime.py#L56 This line will raise an error AttributeError when I clear the picked datetime. As described in: https://github.com/vidartf/ipydatetime/issues/8 ``` venv/lib/python3.8/site-packages/ipydatetime/datetime_widget.py in _validate_tz(self, value) 135 136 def _validate_tz(self, value): --> 137...

### Problem People just want to save a notebook with widgets, and the state should be embedded, they by default should not have to worry about saving the widget state,...

ux/ui
enhancement

**fresh environment:** 1. conda create -n ipywidgets-test --override-channels --strict-channel-priority -c conda-forge -c anaconda jupyterlab 2. conda activate ipywidgets-test 3. conda install ipywidgets python: 3.10.5 ipywidgets: 7.6.5 VSCODE: 1.68.1 ## Description...

I would like to know if this development is open to new translations of the documentation, I like to help out on projects by translating documents and I believe it...

docs

Based on the discussion above, it sounds like it would still make sense to also provide a "stable" Binder that would install `ipywidgets` from conda forge or PyPI. As an...

good first issue
enhancement

I followed the example at https://github.com/jupyterlab/extension-examples/tree/master/advanced/kernel-output The ipywidgets can be displayed fine in the notebook cells, but not in the `SimpliedOutputArea` from `@jupyterlab/outputarea` created manually. I checked the rendermime, it...

### Problem Currently, the messages from frontend to kernel are received via he shell channel which is flushed only when the main thread is free. If there is a long...

I have observed `DeprecationWarning` with `ipywidgets 7.7.0` and `traitlets 5.2.2.post1`: ``` DeprecationWarning: Passing unrecognized arguments to super(Layout).__init__(align='top'). object.__init__() takes exactly one argument (the instance to initialize) This is deprecated in...