A Tree Widget using jsTree
Project description
ipyselect2
Usage
from ipyselect2 import Select2
import ipywidgets as widgets
s1 = Select2(options=['a', 'b'], width='200px')
s2 = Select2(options=['x', 'y'], width='200px', multiple='multiple', lazy=True)
s2.layout.height = '60px'
def values_change(change):
with output:
print(change)
s1.observe(values_change, 'values')
s2.observe(values_change, 'value')
output = widgets.Output()
tab = widgets.Tab()
tab.children = [s1, s2]
def tab_change(x):
if x['new']: s2.lazy = False
tab.observe(tab_change, 'selected_index')
tab.set_title(0, 'single select')
tab.set_title(1, 'multiple select')
display(tab, output)
Installation
A jupyter widget using select2
With pip:
pip install ipyselect2
To make it work for Jupyter lab:
jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter labextension install ipyselect2
If you have notebook 5.2 or below, you also need to execute:
jupyter nbextension enable --py --sys-prefix ipyselect2
For a development installation (requires npm),
cd /opt
git clone https://github.com/opentradesolutions/ipyselect2.git
cd ipyselect2
pip install -e .
jupyter nbextension install --py --symlink --sys-prefix ipyselect2
jupyter nbextension enable --py --sys-prefix ipyselect2
jupyter labextension link js
For Jupyter lab development, you may want to start Jupyter lab with jupyter lab –watch so it instantly picks up changes.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ipyselect2-0.1.7.tar.gz
(438.1 kB
view hashes)
Built Distribution
ipyselect2-0.1.7-py2.py3-none-any.whl
(881.5 kB
view hashes)
Close
Hashes for ipyselect2-0.1.7-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf670220e75ddf80ef11030dac4547c1a5c42f8e3e9e7a2b5864920187324f32 |
|
MD5 | 4df20f9ebc07c45decd2294ee4ecca84 |
|
BLAKE2b-256 | f7e0e992c52574b6fcf90efcc024aff838e270d37184e5d3693cb0e6a3ab9d6f |