Open
Description
I learned yesterday that periods should not be allowed in IDs in Dash. I just tried the following app, and I didn't receive any errors. The app did not work, but the only error was in the javascript console in the browser - that's not useful for R developers, they wouldn't think to look there. The error needs to happen in the R console.
library(dash)
app <- dash_app()
app %>% set_layout(
dccInput("my.name", "dean"),
div(id = "out")
)
app %>% add_callback(
outputs = output("out", "children"),
params = input("my.name", "value"),
I
)
app %>% run_app()
Metadata
Metadata
Assignees
Labels
No labels