{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "import panel as pn\n", "pn.extension()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `AutocompleteInput` widget allows selecting a `value` from a list or dictionary of `options` by entering the value into an auto-completing text field. It falls into the broad category of single-value, option-selection widgets that provide a compatible API and include the [`RadioBoxGroup`](RadioBoxGroup.ipynb), [`Select`](Select.ipynb) and [`DiscreteSlider`](DiscreteSlider.ipynb) widgets.\n", "\n", "Discover more on using widgets to add interactivity to your applications in the [how-to guides on interactivity](../how_to/interactivity/index.md). Alternatively, learn [how to set up callbacks and (JS-)links between parameters](../../how_to/links/index.md) or [how to use them as part of declarative UIs with Param](../../how_to/param/index.html).\n", "\n", "#### Parameters:\n", "\n", "For details on other options for customizing the component see the [layout](../../how_to/layout/index.md) and [styling](../../how_to/styling/index.md) how-to guides.\n", "\n", "##### Core\n", "\n", "* **`options`** (list): A list of options to select from\n", "* **`restrict`** (boolean, `default=True`): Set to False in order to allow users to enter text that is not present in the options list.\n", "* **`search_strategy`** (str): Define how to search the list of completion strings. The default option `\"starts_with\"` means that the user's text must match the start of a completion string. Using `\"includes\"` means that the user's text can match any substring of a completion string.\n", "* **`value`** (str): The current value updated when pressing key; must be one of the option values if restrict=True.\n", "* **`value_input`** (str): The current value updated on every key press.\n", "* **`case_sensitive`** (boolean, `default=True`): Enable or disable case sensitivity for matching completions.\n", "\n", "##### Display\n", "\n", "* **`disabled`** (boolean): Whether the widget is editable\n", "* **`name`** (str): The title of the widget\n", "* **`placeholder`** (str): A placeholder string displayed when no option is selected\n", "* **`min_characters`** (int, `default=2`): The number of characters a user must type before completions are presented.\n", "\n", "___" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "autocomplete = pn.widgets.AutocompleteInput(\n", " name='Autocomplete Input', options=['Biology', 'Chemistry', 'Physics'],\n", " case_sensitive=False, search_strategy='includes',\n", " placeholder='Write something here')\n", "\n", "pn.Row(autocomplete, height=100)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Like most other widgets, `AutocompleteInput` has a value parameter that can be accessed or set:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "autocomplete.value" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If `restrict=False` the `AutocompleteInput` will allow any input in addition to the completions it offers:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "not_restricted = autocomplete.clone(value='Mathematics', restrict=False)\n", "pn.Row(not_restricted, height=100)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "not_restricted.value" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Controls\n", "\n", "The `AutocompleteInput` widget exposes a number of options which can be changed from both Python and Javascript. Try out the effect of these parameters interactively:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "pn.Row(autocomplete.controls(jslink=True), autocomplete)" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }