Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9c9c886
multiselect plugin wrapper
gzh2003 Apr 21, 2026
db5a635
fix docs error
gzh2003 Apr 21, 2026
086748b
Issue with raise entries in autodoc
gzh2003 Apr 21, 2026
83107fe
should be using hand rolled props
gzh2003 Apr 26, 2026
23417ed
fix round trip issue
gzh2003 Apr 27, 2026
343d651
deprecation
jnumainville May 14, 2026
665b178
fixed
jnumainville May 14, 2026
29ac4d2
refactor and tests
jnumainville May 14, 2026
ce954fa
fixing issues
jnumainville May 14, 2026
0498ace
fixed screenshots
jnumainville May 14, 2026
ac827c2
fixed comments
jnumainville May 15, 2026
d4a7edc
a few more comments
jnumainville May 15, 2026
50db888
snapshots
jnumainville May 15, 2026
933b760
comments
jnumainville May 18, 2026
db48710
better warns
jnumainville May 18, 2026
574fbb5
split out
jnumainville May 21, 2026
b662249
comments
jnumainville May 22, 2026
90dc770
work children
jnumainville May 22, 2026
00a5861
update and e2e
jnumainville May 22, 2026
7d6cb82
Merge remote-tracking branch 'origin/main' into DH-19683-multi-select…
jnumainville May 22, 2026
e1dfba7
docs updates
jnumainville May 22, 2026
384ae37
changes
jnumainville May 26, 2026
16dcc39
forcing
jnumainville May 26, 2026
71f175e
clean up lock
jnumainville May 26, 2026
9b13be6
try overriding everything
jnumainville May 26, 2026
e82bf3f
Revert "try overriding everything"
jnumainville May 26, 2026
a6b4493
Revert "clean up lock"
jnumainville May 26, 2026
ca94cf7
Revert "forcing"
jnumainville May 26, 2026
3b7477f
package bundling
jnumainville Jun 8, 2026
0bdca72
e2e fix
jnumainville Jun 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,312 changes: 367 additions & 3,945 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions plugins/ui/docs/components/combo_box.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@ my_combo_box_basic = ui_combo_box_basic()
Recommendations for creating clear and effective combo boxes:

1. The combo box's text input simplifies searching through large lists. For lists with fewer than 6 items, use radio buttons. For lists with more than 6 items, assess if the list is complex enough to need searching and filtering, and if not, use a picker instead.
2. Every combo box should have a label specified. Without one, the combo box is ambiguous and not accessible.
3. Options in the combo box should be kept short and concise; multiple lines are strongly discouraged. If more than one line is needed, consider using a description to add context to the option.
4. Choose a `width` for your combo boxes that can accommodate most of the available options.
5. The field labels, menu items, and placeholder text should all be in sentence case.
6. Identify which combo boxes are required or optional, and use the `is_required` field or the `necessity_indicator` to mark them accordingly.
7. A combo box's help text should provide actionable guidance on what to select and how to select it, offering additional context without repeating the placeholder text.
8. When an error occurs, the help text specified in a combo box is replaced by error text; thus, ensure both help and error text convey the same essential information to maintain consistent messaging and prevent loss of critical details.
9. Write error messages in a clear, concise, and helpful manner, guiding users to resolve the issue without ambiguity; ideally, they should be 1-2 short, complete sentences.
2. For selecting multiple options, use a [multi-select](multi_select.md) instead.
3. Every combo box should have a label specified. Without one, the combo box is ambiguous and not accessible.
4. Options in the combo box should be kept short and concise; multiple lines are strongly discouraged. If more than one line is needed, consider using a description to add context to the option.
5. Choose a `width` for your combo boxes that can accommodate most of the available options.
6. The field labels, menu items, and placeholder text should all be in sentence case.
7. Identify which combo boxes are required or optional, and use the `is_required` field or the `necessity_indicator` to mark them accordingly.
8. A combo box's help text should provide actionable guidance on what to select and how to select it, offering additional context without repeating the placeholder text.
9. When an error occurs, the help text specified in a combo box is replaced by error text; thus, ensure both help and error text convey the same essential information to maintain consistent messaging and prevent loss of critical details.
10. Write error messages in a clear, concise, and helpful manner, guiding users to resolve the issue without ambiguity; ideally, they should be 1-2 short, complete sentences.

## Data sources

Expand Down Expand Up @@ -767,7 +768,7 @@ my_combo_box_alignment_direction_examples = ui_combo_box_alignment_direction_exa

## How to create a multi-select component

By leveraging the `on_change` handler of `ui.combo_box` to dynamically generate items, you can pair it with `ui.tag_group` to build a multi-select component.
It's recommended to use [`multi_select`](multi_select.md) for `multi-select` use cases, but if you want the `combo_box` separate from the tags you can also use a `tag_group` to show selected items, and use the `on_input_change` and `on_change` events to manage the state between them.

```python
from deephaven import ui
Expand Down
Loading
Loading