Git Product home page Git Product logo

eexcelview's People

Contributors

elidemayo avatar naduvko avatar nkostadinov avatar sheershoff avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

eexcelview's Issues

Composer/Packagist

Thanks for working on this extension. I still use it on one of my legacy application and it works great.

Do you have any plans on having the extension available on the Packagist, so that it can be installed using composer?

Thank you for your help!

How to install?

Can you add documentation on where to put the eexcelview.php file? I know it just goes into the extensions folder, but it wasn't very clear when the usage example shows 'EExcelView'.

Also, doesn't the usage example need to use the following?: 'ext.EExcelView'

problem exporting pdf

I'm not able to export in pdf. Also adding libraries to PHPExcel i'm not able to get this working. Could you provide an example to how configure it in the right way with PdfRendererName and PdfRendererPath parameters? I usually get error when eexcel create the document writer because it try to autoload phpexcel_writer_pdf_dompdf (example) but it cause autoload error.

PHP 8.1 compatibility

problem when calculating Column IDs for sheet with more than 26 columns, e.g. "AA", "AB"....

2023/08/26 19:47:25[244.185.41.121] [error] [php] Implicit conversion
from float 65.03846153846153 to int loses precision
(C:\web\prod\app\extensions\EExcelView.php:458)

fix:

@@ -460 +460,2 @@ class EExcelView extends CGridView
-            return ($this->columnName($index / 26)).($this->columnName($index%26 + 1));
+            // JJD 8/27/23 must pass int to columnName()
+            return ($this->columnName((int)($index / 26))).($this->columnName($index%26 + 1));

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.