Hi,
I’m playing a bit with streamlit data_editor but I ran into what I guess is a limitation of the method.
Basically my example is quite simple, I want to provide a dataframe where recruiters can upload positions and list of skills required. The skills would be pre-input to avoid duplications like “PM”, “Project Manager”, “Project Management” etc. So my first option was to use column_config.SelectboxColumn. However, I can only select one option with this method.
Then my other option was to use List and do the validation in the result, however when I use the column_config.ListColumn I simply cannot input anything. I was assuming it would work similar to excel or google sheets tags but it isn’t.
Am I doing something wrong or is there any other way to achieve the given example above?
Thanks in advance!