Hi Everyone,
One question: is it possible to create a clientside callback with multiple outputs?
In Dash I have something like this:
app.clientside_callback(
ClientsideFunction(namespace="clientside", function_name="createTable"),
[Output('table', 'columns'), Output('table', 'data')],
[Input('button', 'n_clicks')],
)
But what should then my JS function return? Array?
2 posts - 2 participants






