0

In a SelectMultiple widget in iPython, is it possible to select nothing (or unselect everything)? There doesn't seem to be any option like that in the documentation.

Thomas K
  • 39,200
  • 7
  • 84
  • 86
user1742188
  • 4,563
  • 8
  • 35
  • 60

1 Answers1

0

Set the .value property equal to an empty tuple

def clear_search_vals(b):
    tester_sel.value = ()
    temp_sel.value=()
    site_sel.value=()
    pass_num_sel.value=()
W. Oldham
  • 1
  • 1