How creat one filter_silder for two objects or SharedData ??
I have code like:
absolutePanel(top = 5, right = 130, draggable = TRUE, bottom = "auto", overflow = FALSE, width = "15%", height = "auto",
filter_slider("Temp", "", shared_data , column=~Temp, step=0.1),
filter_slider("Temp", "", shared_data2 , column=~Temp, step=0.1),
filter_slider("Temp", "", df , column=~Temp, step=0.1))))
and I get I get three filter slider and I want only one.
any suggestions??
thanks