Use value of component created by callback as input in another callback

I want to use in a Callback the values โ€‹โ€‹of a component which is also created by a callback. Basically I have a radioiteme component whose calback returns a checklist component. and I want used the values โ€‹โ€‹from this checklist in a python object

I have this error

A nonexistent object was used in an Input of a Dash callback.

Hi @marctelly

That can happens in the first loading, because the value is not there jet.
See prevent update here: Advanced Callbacks | Dash for Python Documentation | Plotly

I used prevent update but I got the same error

A nonexistent object was used in an `Input` of a Dash callback. The id of this object is `number-of-title` and the property is `value`. ...

the solution was prevent_initial_call=False on the same page. Thank you @Eduardo

1 Like