https://github.com/koolreport/examples-datagrid
https://github.com/koolreport/examples-datagrid
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/koolreport/examples-datagrid
- Owner: koolreport
- License: mit
- Created: 2025-04-08T08:06:06.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-23T08:42:41.000Z (about 1 year ago)
- Last Synced: 2025-06-08T10:06:46.202Z (about 1 year ago)
- Language: PHP
- Size: 1.81 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
This repository contains KoolReport examples for data source types
* Demo: [https://www.koolreport.com/examples-datagrid](https://www.koolreport.com/examples-datagrid)

# Installation
Clone or download the repository source code into your machine:
```
git clone https://github.com/koolreport/examples-datagrid.git
```
If you have not installed KoolReport, go to the source code directory and run composer to install KoolReport:
```
cd path/to/examples-datagrid
composer install
```
Open and edit the file `common.php` to require the `autload.php` file
which includes KoolReport installation:
```
require_once "path/to/vendor/autoload.php";
// or
// require_once "path/to/koolreport/core/autoload.php";
```
Finally, put the repository source code on your web server to serve it
# Source code structure
The source code includes an `assets` subdirectory of css/js files, a `data` subdirectory of csv/excel/sql data files
and most importantly a `reports` subdirectory of report source code files which you could copy and use for your project.
# About KoolReport
KoolReport is an intuitive and flexible Open-Source PHP Reporting Framework for faster and easier report delivery. It gives you full control of data process as well as data visualization. It is fast, simple and can be extended in many ways.
KoolReport core is free and open source released under MIT license.
* Website: [https://www.koolreport.com](https://www.koolreport.com/)
* Documentation: [https://www.koolreport.com/docs](https://www.koolreport.com/docs)
* Online Examples: [https://www.koolreport.com/examples](https://www.koolreport.com/examples/)