1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/config/datatables-html.php
David Bomba d430600e1e
Datatables, Base Model, Base Presenter (#2484)
* Fixes for datatables

* Implement a BaseModel

* Working on reusable header data model

* Working on adding session variables

* Clean up header data

* Random Data Seeder

* working on searching datatables across relationships.

* Working on transforming primary keys between client and server facinglogic

* Updated assets
2018-11-02 21:54:46 +11:00

17 lines
397 B
PHP

<?php
return [
/*
* Default table attributes when generating the table.
*/
'table' => [
'class' => 'table table-hover',
'id' => 'ninja',
],
/*
* Default condition to determine if a parameter is a callback or not
* Callbacks needs to start by those terms or they will be casted to string
*/
'callback' => ['$', '$.', 'function'],
];