php-datatables 1.0 released

php-datatables 1.0 released

lampjunkielampjunkie Posts: 1Questions: 0Answers: 0
edited June 2011 in Announcements
Hi everyone,

I've created a php library which wraps around DataTables in an object-oriented fashion.

This library makes it easy to build complex DataTables and render them without having to manually write any html or javascript. It also allows you to easily use any data source for your table (database, csv, web services, etc...).

At this point I have included wrappers for most of the available features/options/callbacks in DataTables and the rest should be implemented in upcoming versions.

Get it here (along with full documentation and demo):

https://github.com/lampjunkie/php-datatables

Let me know what you think!

-Marc

Replies

  • max4evermax4ever Posts: 45Questions: 0Answers: 0
    you trying to get us all fired here :)
  • tangerinetangerine Posts: 3,342Questions: 35Answers: 394
    Marc, I believe there is an error in your demo code.

    class DbBrowserService, method searchAll():
    [code] $whereSqlParts[] = "{$column} LIKE '%{$search}%'"; [/code]
    should be
    [code] $whereSqlParts[] = "{$columnName} LIKE '%{$search}%'"; [/code]
This discussion has been closed.