You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [x ] a bug report
- [ ] a feature request
- [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet)
What is the expected behavior?
apply (set) columnAttributes if AT LEAST ONE row is red by filter
apply rowAttributes if at least one column is red by filter
What is the current behavior?
columnAttributes are applied only if ALL rows of column are red by filter.
rowAttributes - applied only if all columns for particular row is red by filter.
What are the steps to reproduce?
in xml source is (for file /xl/worksheets/sheet1.xml):
mabye it is not a real bug, but just the matter of opinion
solutions ?
So if you do agree with me - can you apply code (foreach loop) from my referenced diff above?
or
If you disagree - can you please just change reader private methods to protected, so I can override just one method instead of "copying" the whole class?
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If this is still an issue for you, please try to help by debugging it further and sharing your results.
Thank you for your contributions.
This is:
What is the expected behavior?
What is the current behavior?
What are the steps to reproduce?
in xml source is (for file /xl/worksheets/sheet1.xml):
I use following readFilter to read cells
e.g. $rowAttribute['rowHeight'] is not set for any row
because column A (and some other columns too) is not among readable columns
Which versions of PhpSpreadsheet and PHP are affected?
phpspreadsheet 1.6.0 (latest master too)
php 5.6, 7.2, 7.3 (tested this three versions)
this is related to #370
My fix for this issue that worked was this (see all foreach loop) Dfred@03d64d3#diff-068dc0d172bdee1daf06b49c7d6b03adR940
And now I see this https://github.com/PHPOffice/PhpSpreadsheet/blob/master/src/PhpSpreadsheet/Reader/Xlsx.php#L2574-L2602
and this caused such behaviour
solutions ?
or
The text was updated successfully, but these errors were encountered: