csv()
Description
Exports data from a treegrid into a CSV file
csv(config?: object): string;
Parameters:
config
- (optional) an object with export settings. You can specify the following settings for export to CSV:asFile?: boolean
- (optional) defines whether TreeGrid should be exported to a file, true by default. To export TreeGrid only as a CSV string, you need to set asFile:falsename?: string
- (optional) the name of the exported CSV file (if asFile is not set to false)flat?: boolean
- (boolean) defines whether TreeGrid data should be exported as a flat structure; false by defaultrowDelimiter?: string
- (optional) a newline ("\n") by default. A separator between rows, can be a tab - "\t", or any other valuecolumnDelimiter?: string
- (optional) a comma (",") by default. A separator between columns, can be a semicolon - ";", or any other value
Returns:
A CSV string with TreeGrid data
Example
// default export
treegrid.export.csv();
// export with config settings
treegrid.export.csv({
name:"treegrid_data", // data will be exported to a CSV file named "treegrid_data"
rowDelimiter: "\t", // the tab delimiter will be used to separate rows
columnDelimiter: ";" // the semicolon delimiter will be used to separate columns
});
Related samples: TreeGrid. Export to .xlsx and .csv
Related article: Exporting TreeGrid