2017 © Pedro Peláez
 

library datatable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

image

laravel-enso/datatable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  • Wednesday, May 9, 2018
  • by aocneanu
  • Repository
  • 2 Watchers
  • 4 Stars
  • 1,020 Installations
  • PHP
  • 8 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 73 Versions
  • 1 % Grown

The README.md

Data Table

Codacy Badge StyleCI License Total Downloads Latest Stable Version , (*1)

DataTable package for the DataTables.net library with server-side processing and a VueJS component., (*2)

Watch the demo click on the photo to view a short demo in compatible browsers, (*3)

Details

Supports: - server side data loading, with multi-argument - searching in all the columns of the table (you can also choose to exclude columns) - customizable column visibility - beautiful tag rendering for boolean flag columns - striped rows for a pleasant aspect - supports custom rendering of data in columns - state save for each table, for certain options and preferences, with the option to reset everything to default - reordering of columns - sorting on any column (you can also choose to exclude some columns within the configuration) - user configurable pagination - reloading of data on demand - automatic display of show/edit/delete buttons based on available permissions - server-side excel exporting of the table data, using current search filtering, up to a configurable limit - permits overriding of the appends attribute for the main query model - sublime snippet for table template and more, (*4)

Installation

The component is already included in the Enso install and should not require any additional installation steps., (*5)

Use

  1. Optionally, you may publish the example table structure class, (*6)

    php artisan vendor:publish --tag=datatable-class
    
  2. In your controller add the DataTable trait. This includes two helper methods that will manage the builder:, (*7)

    • initTable
    • getTableData
  3. In the controller you must define a method for the query builder, such as:, (*8)

    public function getTableQuery()
    {
        return MyModel::select(\DB::raw('id as DT_RowId, attribute1, ..., attributeN'));
    }
    

    Note that it should return a QueryBuilder object and not a collection of results., (*9)

  4. Also in the controller add protected $tableStructureClass = MyTableStructure::class which should be the fully qualified class name describing the structure of the table rendered in your page, (*10)

  5. In your routes files add the routes for the helper methods, and name them myRoute.initTable, myRoute.getTableData and, optionally, myRoute.exportExcel if you want the results exporting functionality, (*11)

  6. If you need to, don't forget to add user permissions for the new routes, (*12)

  7. In your page/component add:, (*13)

    <data-table
        source="myRoute"
        id="my-table-id"
        :custom-render="customRender">
    </data-table>
    
  8. Configure the table from the structure class, (*14)

Options

  • source - required, must reference the controllers base route, where both initTable & getTableData endpoints exist
  • extra-filters - reactive object of the following format "extraFilters": { "table": { "field_1" : '', "field_2" : '', } }
  • custom-params - extra parameters sent to the back-end for custom logic / queries "customParams": { "orders": { dispatched: '' } }
  • interval-filters - where dbDateFormat is REQUIRED if the filter values are dates. The given format has to match the database date format "intervalFilters": { "table":{ "created_at": { "min":"value", "max":"value", "dbDateFormat": "Y-m-d" }, "amount": { "min": 0, "max": 1000 } } }

TableStructure

  • crtNo - the label for the current number column
  • actionButtons - array of types of custom buttons to render
  • headerButtons - array of types of buttons to render above the table header
  • responsePriority - the priority of columns in responsive mode, i.e. when the content doesn't fit on the screen
  • headerAlign & bodyAlign - type of alignment for the text in cells, eg. 'center'
  • icon - the icon to be used for the card containing the datatable
  • notSearchable - simple array w/ the column indexes that are NOT searchable using the component search
  • notSortable - simple array w/ the column indexes that are NOT sortable
  • boolean - array of column indexes that contain values that should be treated as boolean
  • enumMappings - KV array, where key is the column name, and value is the Enum class name used for translation. These enums contain the translations for the flag-type values in your table, which you want to be presented in a more human friendly way, i.e. Shipped/Delivered instead of 5 / 6.
  • appends - optional array of model attributes, which can be appended before returning the query results 1 2
  • columns - array of arrays. Each inner array contains:
    • label - table column header label
    • data - the alias of data in query result, eg. 'owner'
    • name - the table column used when searching, eg. 'owner.name'

1 If you are appending attributes fetched through a relationship, you'll need to include the model's id attribute in the raw query 2 When using appended attributes, since these do not actually exist in the model's DB table, you need to exclude them using the notSearchable option, or you'll get errors when searching, (*15)

Config

  • excelRowLimit - the maximum number of exported entries, when using the export function. You may need to adjust this depending on your server's RAM and PHP settings.

Publishes

  • php artisan vendor:publish --tag=datatable-component - the VueJS component file
  • php artisan vendor:publish --tag=datatable-options - the json options file
  • php artisan vendor:publish --tag=datatable-lang - the default lang files
  • php artisan vendor:publish --tag=datatable-class - the abstract TableStructure class that must be extended when creating specific structures
  • php artisan vendor:publish --tag=enso-update - a common alias for when wanting to update the VueJS component, once a newer version is released.

Notes

The Laravel Enso package comes with this package included. There you'll find working examples for using the component, (*16)

In the snippets folder you'll find a sublime snippet for quickly creating a stub table-structure class, (*17)

Depends on: - Core for the user model - Helpers for some generic classes - VueComponents for the accompanying VueJS components - Laravel-Excel for working the excel files, (*18)

Contributions

are welcome. Pull requests are great, but issues are good too., (*19)

License

This package is released under the MIT license. , (*20)

The Versions

09/05 2018

dev-adminlte

dev-adminlte https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

09/05 2018

1.3.10

1.3.10.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

08/05 2018

1.3.9

1.3.9.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

08/05 2018

1.3.8

1.3.8.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

23/02 2018

1.3.7

1.3.7.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

23/02 2018

2.0.7

2.0.7.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

12/02 2018

1.3.6

1.3.6.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

17/01 2018

1.3.5

1.3.5.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

08/12 2017

dev-master

9999999-dev https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

datatable datatables.net data-table laravel-enso data-table-server-side

08/12 2017

2.0.6

2.0.6.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

08/12 2017

1.3.4

1.3.4.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

08/11 2017

2.0.5

2.0.5.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

28/10 2017

1.3.3

1.3.3.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

13/10 2017

2.0.4

2.0.4.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

10/10 2017

2.0.3

2.0.3.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

10/10 2017

2.0.2

2.0.2.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

06/10 2017

1.3.2

1.3.2.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

04/10 2017

2.0.1

2.0.1.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

26/09 2017

2.0.0

2.0.0.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

25/09 2017

1.3.1

1.3.1.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

19/09 2017

1.3.0

1.3.0.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

22/08 2017

1.2.7

1.2.7.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

22/08 2017

1.2.6

1.2.6.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

15/08 2017

1.2.5

1.2.5.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

15/08 2017

1.2.4

1.2.4.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

15/08 2017

1.2.3

1.2.3.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

11/08 2017

1.2.2

1.2.2.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

04/08 2017

1.2.1

1.2.1.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

01/08 2017

1.2.0

1.2.0.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

29/07 2017

1.1.30

1.1.30.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

28/07 2017

1.1.29

1.1.29.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

25/07 2017

1.1.28

1.1.28.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

19/07 2017

1.1.27

1.1.27.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

17/07 2017

1.1.25

1.1.25.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

17/07 2017

1.1.24

1.1.24.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

17/07 2017

1.1.23

1.1.23.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

12/07 2017

1.1.22

1.1.22.0 https://github.com/laravel-enso/DataTable

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

datatable datatables.net data-table laravel-enso data-table-server-side

11/07 2017

1.1.21

1.1.21.0

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

09/07 2017

1.1.20

1.1.20.0

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

07/07 2017

1.1.19

1.1.19.0

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

05/07 2017

1.1.18

1.1.18.0

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

27/06 2017

1.1.17

1.1.17.0

DataTable package for the DataTables.net library with server-side processing and a VueJS component

  Sources   Download

MIT

The Requires

 

by mishu

25/06 2017

1.1.16

1.1.16.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

23/06 2017

1.1.15

1.1.15.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

23/06 2017

1.1.14

1.1.14.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/06 2017

1.1.13

1.1.13.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/06 2017

1.1.12

1.1.12.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/06 2017

1.1.11

1.1.11.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/06 2017

1.1.10

1.1.10.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/06 2017

1.1.9

1.1.9.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

21/06 2017

1.1.8

1.1.8.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

20/06 2017

1.1.7

1.1.7.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

18/06 2017

1.1.6

1.1.6.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

17/06 2017

1.1.5

1.1.5.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

17/06 2017

1.1.4

1.1.4.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

16/06 2017

1.1.3

1.1.3.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

12/06 2017

1.1.2

1.1.2.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

12/06 2017

1.1.1

1.1.1.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

12/06 2017

1.1.0

1.1.0.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

09/05 2017

1.0.13

1.0.13.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

10/04 2017

1.0.12

1.0.12.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

09/04 2017

1.0.11

1.0.11.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

07/04 2017

1.0.10

1.0.10.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

05/04 2017

1.0.9

1.0.9.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

02/04 2017

1.0.8

1.0.8.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

01/04 2017

1.0.7

1.0.7.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

27/03 2017

1.0.6

1.0.6.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

25/03 2017

1.0.5

1.0.5.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

24/03 2017

1.0.4

1.0.4.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

22/03 2017

1.0.3

1.0.3.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

21/03 2017

1.0.2

1.0.2.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

19/03 2017

1.0.1

1.0.1.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu

19/03 2017

1.0.0

1.0.0.0

DataTable builder for DataTable.net jQuery library

  Sources   Download

MIT

The Requires

 

by mishu