The most terrible thing when develop CodeIgniter based application is netbeans/eclipse missing auto-completion feature. For example, when you load a model, netbeans/eclipse cannot automatically show you what functions available in that model.
There is a "trick" for that:
$this->load->model('your_model'); $this->your_model = new Your_Model();
By adding that line, now you can have a working auto-completion to make your development time more painless :)
However it has some consideration:
- You will need to add an extra line for that
- The model will be instantiated twice
​This trick also works for "library". And groceryCRUD example already use such a trick.