Skip to content

Question about .bind_visibility_from() when using ui.select() #3049

Closed Answered by falkoschindler
miccs0 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @miccs0,

You can specify the value for when the element should be visible like this:

ui.input('Comments').bind_visibility_from(data, 'value', value=1)

This is a shorthand for explicitly defining the conversion from an arbitrary value to a boolean visibility like this:

ui.input('Comments').bind_visibility_from(data, 'value', lambda v: v == 1)

Replies: 1 comment 1 reply

Comment options

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

Answer selected by miccs0
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