Making only some columns editable on streamlit-aggrid?

Hi @secret, I had written a similar code (Ag-Grid component with input support - #236 by Shawn_Pereira) which you can refer to. However, this was for aggrid version 0.2.3. I currently use version 0.3.3. Between then and now there are changes in syntax. If you plan to test the code from the link and are using 0.3.3 then you need to make the following changes:

  1. delete the line theme="streamlit",
  2. Lines similar to dta['data']['Amt'][i] would now be dta['data'][i]['Amt']

Cheers