NitemareReal
NitemareReal
The problem is still there in production version (minified). If you use: `width: 190` then, "isset" call from line 331 (patched by @1grafik as a solution ) returns **false** because...
I wrote this method to download file: ```php public function download(string $filename){ $buffer = $this->writeToString(); header('Content-Description: File Transfer'); if (headers_sent()) $this->Error('Some data has already been output to browser, can\'t send...
Hello, I have added your change to my fork from @lacopoMelani xlsWriterPlus fork. This is my xlsWriterPlus fork: https://gist.github.com/NitemareReal/c4274f62c9239f64b3a18a7d07f7d118 (@lacopoMelani xlsWriterPlus adds suport to insert images on sheets)
Hello, to increase compatibility (Excel 2007), change: ```php $customHt = isset($col_options['height']) ? true : false; ``` with: ```php $customHt = isset($col_options['height']) ? "true" : "false"; ```
> Hi @Gyvastis, > > after some tests to make working on MS Excel i altered the **xlsxwriterplus.class.php** and in my case starts working. > > https://gist.github.com/IacopoMelani/df8c2c3ecc748bd0c9f478bd270dccf2 Hello, I have...
> > > Hi @Gyvastis, > > > after some tests to make working on MS Excel i altered the **xlsxwriterplus.class.php** and in my case starts working. > > >...
> You're very very Welcome. > The credit is yours too, man. If You hadn't started patching the initial version, I would most likely never have reached out to make...