1.0.7 • Published 3 years ago
jsxtabletoexcel v1.0.7
For downloading Xls File :
use downloadExcel function -
sheetName - String
fileName - String
Example:
import {downLoadExcel} from "jsxtabletoexcel"
const tableRef = useRef(null)
<Button onClick={() => downLoadExcel(tableRef.current,sheetName,fileName)}> Click ME
For downloading csv file :
use downloadCsv function -
targetRef - ref of the table to be exported
fileName - String
Example: import {downloadCsv} from "jsxtabletoexcel"
const tableRef = useRef(null)
<Button onClick={() => downloadCsv(tableRef.current,fileName)}> Click ME