I have a dataframe in my local streamlit app wich I have columns with a range value like column_a = [1,2]. Does the lib data_editor support this type of data?
Hey @Renan_Nogueira ! Welcome back. Super appreciate this post!
The big challenge will be asking whether to edit the range.
The only column config we officially support is ListColumn, but it is not editable by default
You could try using a TextColumn config and provide the validate parameter and handle the translation to range back in the script. Less ideal, but I think it makes the most sense.