12345678910111213141516171819202122232425262728293031323334353637 |
- from nicegui import ui
- from ..documentation_tools import text_demo
- def main_demo() -> None:
- select1 = ui.select([1, 2, 3], value=1)
- select2 = ui.select({1: 'One', 2: 'Two', 3: 'Three'}).bind_value(select1, 'value')
- def more() -> None:
- @text_demo('Search-as-you-type', '''
- You can activate `with_input` to get a text input with autocompletion.
- The options will be filtered as you type.
- ''')
- def search_as_you_type():
- continents = [
- 'Asia',
- 'Africa',
- 'Antarctica',
- 'Europe',
- 'Oceania',
- 'North America',
- 'South America',
- ]
- ui.select(options=continents, with_input=True,
- on_change=lambda e: ui.notify(e.value)).classes('w-40')
- @text_demo('Multi selection', '''
- You can activate `multiple` to allow the selection of more than one item.
- ''')
- def multi_select():
- names = ['Alice', 'Bob', 'Carol']
- ui.select(names, multiple=True, value=names[:2], label='comma-separated') \
- .classes('w-64')
- ui.select(names, multiple=True, value=names[:2], label='with chips') \
- .props('use-chips').classes('w-64')
|