Skip to content

Invert default selection from all to empty in selectors with multiple activated #592

Answered by FlorianJacta
shaunwbell asked this question in Q&A
Discussion options

You must be logged in to vote

You have initialized your selection to be all the selector values in your code. You can initialize it to None to solve your issue:

from taipy.gui import Gui 

mooring_ids = [f"Choice {i}" for i in range(100)]
mooring_id = None

md = "<|{mooring_id}|selector|lov={mooring_ids}|multiple|label=Select the Mooring ID|dropdown|on_change=on_filter|class_name=fullwidth|>"

def on_filter(state):
    print(state.mooring_id)

Gui(md).run()

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by shaunwbell
Comment options

You must be logged in to vote
1 reply
@FlorianJacta
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants