Hello,
I’m trying to build an app where a user can select a set of options (from a dropdown
), and I’d like to dynamically a html.Div
element with an input
and a Datalist
for each of them.
So a pattern matching callback for the Datalist
on a user starting to type, and generate a list of suggestion from an api call.
For that I would need to pass the element ID as an input for the Datalist element, but somehow I cannot do it, as I think the id for the list needs to be a string.
So, something like this
listx = ['item1', 'item2', 'item3']
test_tab = dcc.Tab(
label='Test tab',
children=[
html.Div([
dbc.InputGroup([
dbc.InputGroupText(x),
dcc.Input(
id={
'type': 'test',
'index': x
},
type='text',
placeholder=x,
list={
'type': 'test-list',
'index': x
},
)
]),
html.Datalist(
id={
'type': 'test-list',
'index': x
},
children=[]
)
]) for x in listx
]
)
And the callback (ideally matching) would fill the datalist items.
@app.callback(
Output({'type': 'test-list', 'index': MATCH}, 'children')
Input({'type': 'test', 'index': MATCH}, 'value'),
)
def test_suggest_locs(x):
return ([html.Option(value=item) for item in myAPIcall(x)]
Eventually, I could create all the datalists in advance (as I have the list), but it is a nightmare to deal with inputs that might not yet exist with the flexible callback signatures, like this.
Best regards,
Daniele