on writeFile as dbf modify the column header #1888
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#1888
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I use SheetJS to upload a dbf file, then parse, modify some info and then writeFile as dbf. If I saw correct after parsing the dbf file the column properties will be lost (I don't know if there a way to retain). And when I want so save the file, the writeFile function will export my file and the column header properties will be automatically calculated. (how I can edit?)
example:
source file column properties: NR_ACT,C,50
exported file column properties: NR_ACT,C,250
Thanks your help!
On read the original field type and lengths are not preserved. On write, they are automatically deduced based on the worksheet data.
The column type metadata could theoretically be attached to column info (which is how we store column width info) and referenced on write. For our testing, can you share that file?