laravel-datatables-editor
laravel-datatables-editor copied to clipboard
Laravel DataTables Editor Integration.
### edit inline not work! Greetings. In this tutorial "https://yajrabox.com/docs/laravel-datatables/master/editor-tutorial" as I call the inline editor, I have followed all the steps and everything works but not the editor. and...
composer require yajra/laravel-datatables-editor:^1.0 After this its giving this error Your requirements could not be resolved to an installable set of packages. Problem 1 - don't install illuminate/validation 5.5.x-dev|don't install laravel/framework...
Can anyone please share an example of how to use editor with yajra datatable. I am unable to find the same in the documentation. Below I am sharing the code...
Hello, I try to use editor datatable trial fot my work. I follow [this tuto](https://yajrabox.com/docs/laravel-datatables/master/editor-tutorial) but I can't get the editor buttons to work. I got this error when i...
### Summary of problem or feature request Hello! First of all thank you for your awesome work! I'm trying to follow your tutorial to install Datatables Editor, but I get...
### Summary of problem or feature request Hello, I'm searching how to implement inline editing in responsive cell as descrive here : https://editor.datatables.net/examples/inline-editing/responsive using html builder. Thank's ### Code snippet...
### Summary of problem or feature request I am trying to resize columns of my datatable but it is not working. ### Code snippet of problem $('#laravel_datatable').DataTable({ processing: true, serverSide:...
### Summary of problem or feature request When I use this code ```php return datatables()->of( School::withTrashed()) ->escapeColumns(['action']) ->setRowId([ 'data-id' => function($school) { return $school->id; }, ]) ``` I am getting...
https://github.com/yajra/laravel-datatables-editor/blob/master/src/DataTablesEditor.php#L112 ```php /** * @return string */ protected function getUseFriendlyErrorMessage() { return 'An error occurs while processing your request.'; } ``` Should be getUse**r**FriendlyErrorMessage
Hi! I have a laravel 5.8 application which uses the datatables editor with this package, i.e. laravel-datatables. I have a model App\x which has a belongsTo('App\y') relation. In the datatable...