You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a Shiny app that includes several mutually dependent (i.e. bidirectional) filters of several data types (e.g. character, numeric, date). I would like the values of each filter to update on the fly based on the selections in other filters, as is possible with the example featured in select_group_ui(), where selecting Manufactuer == "Acura" will update the Type filter and only Midsize and Small will be selectable.
However, this functionality doesn't seem to be the default in filter_data_ui(). Running the example from the documentation, the filters don't seem to update based on user inputs to other flters (e.g. selecting species == "virginica" does not update the numeric inputs to reflect the ranges actually observed for that species).
Is it possible to achieve this auto-updating-filter functionality with filter_data_ui()?
Many thanks,
Josh
The text was updated successfully, but these errors were encountered:
Hello,
I am developing a Shiny app that includes several mutually dependent (i.e. bidirectional) filters of several data types (e.g. character, numeric, date). I would like the values of each filter to update on the fly based on the selections in other filters, as is possible with the example featured in
select_group_ui()
, where selectingManufactuer == "Acura"
will update theType
filter and onlyMidsize
andSmall
will be selectable.However, this functionality doesn't seem to be the default in
filter_data_ui()
. Running the example from the documentation, the filters don't seem to update based on user inputs to other flters (e.g. selectingspecies == "virginica"
does not update the numeric inputs to reflect the ranges actually observed for that species).Is it possible to achieve this auto-updating-filter functionality with
filter_data_ui()
?Many thanks,
Josh
The text was updated successfully, but these errors were encountered: