Benoit VRIGNAUD

Results 11 comments of Benoit VRIGNAUD

Is there any problem to apply my PR ?

Use first letter in upercase to class name. Try : ```php $crud = new Grocery_CRUD(); ``` instead of : ```php $crud = new grocery_CRUD(); ```

Can you try this : ```php $crud->columns('ci_company.name'); ``` I don't remember if this works. You may find more help here : https://www.grocerycrud.com/forums/

I think tat the easiest way is to prefix your fields names in your database. That's watt I did in each of my project where I use GroceryCRUD. ex: ```sql...

Try this: ```php $this->crud->display_as('client.name', 'Client'); ```

Yes, this is a good idea. Actually I use 2 "solutions" : - create view for list/ajax_list/... - or disable some search field It's the best/easy I found.

Have you ever try it with CI2 ? Have you seen the video ? There are somme miss in the readme

I understand, It's not really clear. 1) composer require bvrignaud/ci4-admin 2) install css/js dependencies (package.json). I use yarn : yarn add admin-lte@v3 3) Configure root. You must set your database...