We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
It'd be great if the header row can be omitted by configuration. For example, setting true/false to config.xlsx_builder.output_header.
At the moment disabling header seems not possible so I simply add an after_filter to the xslx block:
after_filter
after_filter do |sheet| sheet.rows.delete_at 0 end
The text was updated successfully, but these errors were encountered:
added support for skip_header in builder and dsl. #15
051c387
Hi @baxang
Ive added support for this in master. Header serialization can be turned off by specifying:
skip_header
in your builder configuration.
Can I ask you to have a go at what is on master an confirm that this meets your needs?
Sorry, something went wrong.
@randym Thanks for the new feature. It seems exactly what I asked for. I'll try it ASAP.
No branches or pull requests
Hi,
It'd be great if the header row can be omitted by configuration. For example, setting true/false to config.xlsx_builder.output_header.
At the moment disabling header seems not possible so I simply add an
after_filter
to the xslx block:The text was updated successfully, but these errors were encountered: