Allow to copy from the table grid in the IDE

I would like to select one or more cells from a table grid view in the IDE and paste it on a text editor or Excel.

I don’t know which one of these options would be best for managing multiple cell selections:

  1. All the selected cells should be converted to json, so the dictionaries in the resulting json will have one key per selected column - This would give something already formatted and immediately reusable in python
  2. All the selected cells should be converted to csv and use the standard csv formatting to separate cells and rows - I like this less than json, but it would be consistent with the download button already existing
  3. The values in a row should be separated by tabs and the rows by line feeds - This would be messy when tabs and line feeds are present in the values, but I think it would be the most useful for most every day cases
1 Like