Using Streamlit Aggrid and searching for a way to limit editing to specific columns versus all of them.
code snippet:
gd = GridOptionsBuilder.from_dataframe(df)
gd.configure_pagination(enabled=True, paginationAutoPageSize=True,paginationPageSize=10)
gd.configure_default_column(editable=True, groupable=True)
gd.configure_selection(selection_mode="multiple", use_checkbox=True)
gridoptions = gd.build()
Anyone out there able to provide some guidance will be greatly appreciated.
Thanks