PHPackages                             lucasff/cakephp-datatable - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. lucasff/cakephp-datatable

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

lucasff/cakephp-datatable
=========================

CakePHP DataTable Plugin

128PHP

Since Feb 12Pushed 12y ago1 watchersCompare

[ Source](https://github.com/lucasff/cakephp-datatable)[ Packagist](https://packagist.org/packages/lucasff/cakephp-datatable)[ RSS](/packages/lucasff-cakephp-datatable/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependenciesVersions (1)Used By (0)

CakePHP DataTable Plugin
========================

[](#cakephp-datatable-plugin)

DataTable is a cakephp plugin for [JQuery DataTables](http://datatables.net/).

Requirements
============

[](#requirements)

- CakePHP 2.2 or higher

Installation
============

[](#installation)

*\[Manual\]*

1. Download this: .
2. Unzip
3. Copy the resulting folder to `app/Plugin`
4. Rename the folder to `DataTable`

*\[GIT Submodule\]*

In your app directory run:

```
git submodule add https://github.com/tigrang/cakephp-datatable.git Plugin/DataTable
git submodule init
git submodule update

```

*\[GIT Clone\]*

In your plugin directory run:

```
git clone https://github.com/tigrang/cakephp-datatable.git DataTable

```

Enable Plugin
-------------

[](#enable-plugin)

In your `app/Config/bootstrap.php`:

```
CakePlugin::loadAll();
// OR
CakePlugin::load('DataTable');

```

Usage
=====

[](#usage)

#### Example controller:

[](#example-controller)

```
