-
Notifications
You must be signed in to change notification settings - Fork 2
exportables
Paul edited this page Jan 2, 2019
·
1 revision
[
{'type': 'csv', 'enabled': true, filename: 'export.csv'}
]The exportables property sets the options for exporting a table. Currently, only csv is supported.
render() {
//disable the csv export button
return html`
<example-data-table .exportables="${ [type:'csv', 'enabled': false] }"></example-data-table>
`
}