workbook icon indicating copy to clipboard operation
workbook copied to clipboard

Wrapper for js-xlsx providing convenient way to accumulate sheets, rows, styles

Results 10 workbook issues
Sort by recently updated
recently updated
newest added

"fill" parameter was in a separate curly braces than the other options to modify the cell, which caused xlsx-style to ignore the value.

This is my solution that you can change in the library On line 128 you should change the validation. ``` var cell = (data[R][C] && typeof data[R][C] == 'object' ?...

Add in headers an attribute for width cells or auto width cell if text cell is bigger.

jx-xlsx npm link has changed when I checked in their GitHub. So I updated the npm command to install js-xlsx in README.md

does this support dropdowns read and write while creating a worksheet?

console.log('hello'); if(typeof XLSX === 'undefined' && typeof require !== 'undefined') XLSX = require('xlsx'); var workbook = { SheetNames: ['Sheet 1'], Sheets: { 'Sheet 1': {'!ref': 'A1:A1'}}}; workbook.Sheets['Sheet 1']['A1'] = {"v":...

If it's methods were on the prototype overriding it would be super easy. `class MyWorkbook extends Workboot {}`

Was previously getting this error, added extra null check and everything was dandy: if (cell.v == null) continue; 21:20:14 web.1 | ^ 21:20:14 web.1 | TypeError: Cannot read property 'v'...

Would be nice to have an API like: ``` js wb.createSheet('Abutters', options) // default styles and other options .row(options) // default options for row, cells inherit these options unless overwritten...

Just a placeholder, since it was mentioned in #2