Hi there,
I think square brackets are missing in your doc which should wrap around the Output argument:
callback!(app, Output("output", "children"),
[Input("submit-button", "n_clicks")],
[State("state-1", "value"),
State("state-2", "value")]) do n_clicks, state1, state2
.....
I was also unable to insert "Test" as follows:
app = dash("Test", external_stylesheets=["https://codepen.io/chriddyp/pen/bWLwgP.css"])
But the documentation suggests that you can (under heading about Python/Julia code comparison).
Hi there,
I think square brackets are missing in your doc which should wrap around the Output argument:
I was also unable to insert "Test" as follows:
But the documentation suggests that you can (under heading about Python/Julia code comparison).