pinano/datatables-bundle

Symfony2 bundle for wrapping the famous dataTables jquery plugin by SpryMedia

Installs: 231

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Language:JavaScript

Type:symfony-bundle

1.9.4.1 2013-08-29 08:03 UTC

This package is not auto-updated.

Last update: 2024-04-08 12:17:25 UTC


README

Current Version

DataTables 1.9.4 + DataTables Plug-ins

Installation

Add bundle to your composer.json file

// composer.json

{
    "require": {
        // ...
        "pinano/datatables-bundle": "dev-master"
    }
}

Or, if you prefer, choose a specific version

// composer.json

{
    "require": {
        // ...
        "pinano/datatables-bundle": "1.9.4.1"
    }
}

Add bundle to your application kernel

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Pinano\DataTablesBundle\PinanoDataTablesBundle(),
        // ...
    );
}

Download the bundle using Composer

$ php composer.phar update pinano/datatables-bundle

Install assets

Given your server's public directory is named "web", install the public vendor resources

$ php app/console assets:install web

Optionally, use the --symlink attribute to create links rather than copies of the resources

$ php app/console assets:install --symlink web

Usage

Once you have imported all the resources to the vendor folder, you can self-import the JS into your Symfony project as usual with:

{# block js #}
{% block javascripts %}
    {% javascripts filter='cssrewrite' output='js/dataTables.js'
        ...
        '@PinanoDataTablesBundle/Resources/public/js/jquery.dataTables.js'
        '@PinanoDataTablesBundle/Resources/public/extras/TableTools/media/js/ZeroClipboard.js'
        '@PinanoDataTablesBundle/Resources/public/extras/TableTools/media/js/TableTools.js'
        ...
        %}
        <script src="{{ asset_url }}"></script>
    {% endjavascripts %}
{% endblock %}

And with the CSS as well using with:

{# block css #}
{% block stylesheets %}
    {% stylesheets filter='cssrewrite' output='css/dataTables.css'
        ...
        'bundles/pinanodatatables/css/jquery.dataTables.css'
        ...
        %}
        <link rel="stylesheet" type="text/css" media="screen" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}

Note: See kriswallsmith/assetic#53 for known limitations of assetic with CSS referencing.

Licenses

I do not own DataTables files at all, I'm just providing a Bundle package to easy-install them all. Refer to the source code of the included files from DataTables for license information.

References

  1. http://datatables.net/
  2. http://www.sprymedia.co.uk/
  3. http://symfony.com