Hi, I have added an editable column in a Dash Data Table. Now I want users to get suggestions from existing inputs in the editable column similar to excel. Let me know if this is possible. Thanks in Advance
Hi @samartha22
Welcome to the community. I hope you’re enjoying the learning of Dash.
I’ll look more into it, but I don’t think autofill in editable cells, based on prior input, is possible.
Yes, if it turns out to be possible, I’ll share solution here.
Hi samartha22
Maybe can help this like workaround.
https://dash.plotly.com/datatable/dropdowns#datatable-with-per-row-dropdowns
1 Like
If the table is not too large, you could just use a standard html table with a component in the cells that support auto completion (I guess that e.g. dcc.Input
would do).
1 Like
Can we implement something using clientside callbacks?