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

After upgrade of extension, content and borders of table are not shown anymore #624

Open
cdaecke opened this issue Oct 2, 2024 · 1 comment

Comments

@cdaecke
Copy link

cdaecke commented Oct 2, 2024

Version(s) affected: 4.0.2, TYPO3 v11.5.34

Description
After upgrading the extension from v3.3.2 to v4.0.2 the content and cell borders of the table are not shown anymore. With version v3.3.2 I get the table like expected and shown in the screenshot below and in v4.0.2 I get just an empty table:

Bildschirmfoto 2024-10-02 um 08 06 33

How to reproduce

  • Install v3.3.2 of the extension and add the attached excel file
  • Display frontend output -> It will show the table like expected and shown in the above screenshot
  • Upgrade extension to v4.0.2, clear cache and display the frontend output again. It will display the empty table.

Possible Solution
Unfortunately I don't have a clue :-(

Additional context
No error messages are shown.

@cdaecke
Copy link
Author

cdaecke commented Dec 19, 2024

Having a deep dive into this issue, I found the following line, which fixed my problem:

'xlsx' => (new Reader\Xlsx())->setReadEmptyCells(false)->load($reference->getForLocalProcessing()),

Old:
'xlsx' => (new Reader\Xlsx())->setReadEmptyCells(false)->load($reference->getForLocalProcessing()),

New
'xlsx' => (new Reader\Xlsx())->load($reference->getForLocalProcessing()),

Is this a known issue?

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

No branches or pull requests

1 participant