-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GridResponse not updated on rowdrag #272
Comments
In complement, in case of nested table, I cannot fin a way go get the nested re-ordering. I get the eddition but not the re-order. Here a made a few changed on the nested table example
|
Are there any updates on this issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello
Thank you for the new version !
When using rowdrag the data is not beeing updated unless you explicitly select a row
Here an example with Row Edit and Row Drag in a form (same if not in a form)
Works if update_mode=MANUAL => when click on update button but this is not user Friendly
`
df = pd.DataFrame(["apple","orange","banana",'tomato', "bean", "potatoe"],columns=["item"])
df["type"] = ""
df_out = None
df_rearranged=None
with st.form("test") :
st.session_state.dataframe = df
type_dropdownlist = ('Fruit', 'Vegetable')
The text was updated successfully, but these errors were encountered: