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

## Description When a Dropdown widget is collapsed, any keyboard inputs supported by JupyterLab are intercepted and interpreted by JLab instead of the dropdown. Seems related to #3836, which is...

Hello, I have a question. Let's say I create a simple widget in Jupyter, like the button from the documentation. ``` from IPython.display import display button = widgets.Button(description="Click Me!") display(button)...

## Description --- **Update:** it looks like the issue appears when the virtual environment is upgraded from notebook `7.0.x` to `7.1.x`, and requires a "Empty Cache and Hard Reload" for...

## Description I am trying to use the spinning icon for a button. It works preferctly in Jupyter Lab, but the button would not show up in VS Code. cc:...

### Problem Type hint annotations are rapidly approaching maturity in the Python world, to the point where it is common for functions to provide these for the arguments. Currently if...

### Problem In order to easily inspect the a Layout instance of a widget, it'd be very useful to have a representation which displays all attributes. This way one can...

### Problem I'm creating dashboard application for voila and I started customizing lots of things using a custom css file. To make it work I would need to have total...

Resolves: https://github.com/jupyter-widgets/ipywidgets/issues/3883

I'm trying to integrate a Tabulator into a Voila application as follows: ``` import pandas as pd import panel as pn pn.extension('tabulator') df = pd.DataFrame(...) df_widget = pn.ipywidget(pn.widgets.Tabulator(df)) ``` I'm...

## Description When modifying outputs from async functions, modifying components attributes (and doing prints) works, but re-rendering outputs does not. ## Reproduce Consider code which attempts to re-render the output...