John Hatch

Results 3 comments of John Hatch

Hmmm, are you calling `setId()` on the datatable function itself? Ex: ``` php Datatable::table() ->setId('myCustomId') ->addColumn('A', 'B', 'C') ->setUrl('api/test') ->render() ``` Which version of the library are you currently using?

To concatenate multiple fields you will want to define a custom column with a function. Embedding an image as an example: ``` php ->addColumn('col_name', function($picture){ return ''; }) ```

Filtering out already-selected options was the most elegant solution for my use case: ```vue ```