Skip to content
New issue

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

Update xlsxwriter.class.php #240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update xlsxwriter.class.php #240

wants to merge 1 commit into from

Conversation

noerone
Copy link

@noerone noerone commented May 7, 2019

Add variable to the function writeSheetRow - so you can add style to each cell and fix failed open files using office 2007, 2010, etc

Add parameters to the function writeSheetRow - so you can add style to each cell and fix failed open files using office 2007, 2010, etc
$collapsed = isset($row_options['collapsed']) ? (bool)($row_options['collapsed']) : false;
$customHt = isset($row_options['height']) ? 'true' : 'false';
$hidden = isset($row_options['hidden']) ? (bool)($row_options['hidden']) : 'false';
$collapsed = isset($row_options['collapsed']) ? (bool)($row_options['collapsed']) : 'false';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this still does not use the right value when passing the options (as they are still boolean there rather than strings)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants