phalcon-datatables icon indicating copy to clipboard operation
phalcon-datatables copied to clipboard

Phalcon adapter for DataTables

Results 12 phalcon-datatables issues
Sort by recently updated
recently updated
newest added

**Upgrade to next version ! rename getPaginate to paginate()** i'm not sur if you keep working in this (6years ago) but if you want to update its please fix the...

Added excel and pdf export features.

If i use joins in builder then it does not filter content. Here is my builder: `$builder = $this->modelsManager->createBuilder() ->columns('c.id, pt.ccexpiry, c.name') ->from(['pt' => 'Mtmpayments\Models\Paymenttokeninfo']) ->join('Mtmpayments\Models\Customers', 'c.id=pt.customerid', 'c'); $dataTables =...

i just modify search code to become insensitive case.

I added a global option to remove case sensitivty from ResultSet and ArrayAdapter Usage: new DataTable(['case_sensitive' => false'])

Hi, Could you fix the problem with QueryBuilder and Resultset please ? -'Cause the ResultSet doesn't support case insensitive when using the filter search column. -The QueryBuilder doesn't support alias...

enhancement

$builder = $this->modelsManager->createBuilder() ->columns('id, name') ->from('Orders') ->where('client_id=' . $client_id); $dataTables = new DataTable(); $dataTables->fromBuilder($builder)->sendResponse(); This code should show orders by client id. however, when the client uses datatables's search, the...

When using ResultSet, filtering is case sensitive. Please make it case in-sensitive like in QueryBulider on the file /DataTables/Adapters/ResultSet.php lines 37 and 48 please change `$check = (strpos($item->$column, $search) !==...