Hi, i'm a newB on Crud,
I've got a matter with the display, it shows with no css, only text.
I've shearch on the explanations but did not found anything interesting.
Here is my controller if you wanna read it :
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Type_matiere_premiere extends CI_Controller { function __construct() { parent::__construct(); $this->load->library('grocery_CRUD'); } function index() { $this->afficheCrud(); } function afficheCrud() { $crud = new grocery_CRUD(); $crud->set_theme('datatables'); $crud->set_table('type_matiere_premiere'); $crud->add_action('More', '', '','ui-icon-plus'); $output = $crud->render(); $this->crudOutput($output); } function crudOutput($output = null) { $this->load->view('matiere_premieres/type_matiere_premiere', $output); } }
If you have an idea, pls tell me !