I have created a blueprintjs table, and I want to be able to get it's data in JSON format. I do not want to get all the columns. Specific ones only and I only way them row by row. This is the format I am talking about:
{
"Campaign": "5",
"Date Sent": "5 days ago"
}
This is the way I have currently rendered my table. I have a button above that will call a javascript function that I wish to do this functionality. On the blueprintjs table documentation, I couldn't find anything related to actually parsing the table. I only found functions relating to just getting data such as # of rows etc.
render() {
const { data } = this.props;
const { length } = data;
return (
<Table
numRows={length}
>
<Column name="Campaign" cellRenderer={this.renderCell} />
<Column name="Date Sent" cellRenderer={this.renderCell} />
<Column name="Queueing" cellRenderer={this.renderCell} />
<Column name="Sent" cellRenderer={this.renderCell} />
<Column name="Open" cellRenderer={this.renderCell} />
</Table>
);
}
}
In Blueprint table documentation:
So can get the data directly from the
data
that you pass as props.For example to select some cells and get a "Copy" button see this demo: https://blueprintjs.com/docs/#table/features.sorting
There is also a
getCellClipboardData
in the table API that allows your users to do mod+c for copy/paste. The way it works is that you get row and column parameters and then just retrieve that data.I've made an example for you if your data is a data[row][column], with mod+c copy/paste for selected cells and a button that "extracts" first and second column.
https://codesandbox.io/s/frosty-wozniak-djk9d?file=/src/App.tsx