CodeIgniter Forums
Is there a good CRUD generator for CI 2.0.2? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: Is there a good CRUD generator for CI 2.0.2? (/showthread.php?tid=42309)



Is there a good CRUD generator for CI 2.0.2? - El Forum - 06-03-2011

[eluser]javidhb[/eluser]
Hi,

I've been spending a lot of time to find and test a good CRUD generator and the result was disappointing!

"Codegen" is a good one but there is a note on its page: "Use this only on localhost!"

please, help me to find a simple and SAFE CRUD generator. Because of security issues and lack of experience i need something secure to use online.

please tell me if you use any(with ci 2.0.2)...


thx in advance


Is there a good CRUD generator for CI 2.0.2? - El Forum - 06-05-2011

[eluser]felix_[/eluser]
whats about http://www.grocerycrud.com/??


Is there a good CRUD generator for CI 2.0.2? - El Forum - 06-06-2011

[eluser]javidhb[/eluser]
Thank you, they have a new release for CI 2.0.x!!!
thx again


Is there a good CRUD generator for CI 2.0.2? - El Forum - 04-07-2014

[eluser]Unknown[/eluser]
Consider also this:

CRUDDER is a plug-in module for your application that works as a CRUD solution, ideal for systems back-ends.

CRUDDER is developed using CodeIgniter and Bootstrap for look&feel;. You can develop your own skin appart from the Bootstrapped one. Full localization is possible. CRUDDER is designed to be intuitive and easy to use. The interfaces always show on-line help tips related to the CRUDDER itself and also to your database characteristics. Advanced features are available.

Defining all the table-and-field-specific metadata don't require to write code. All of this is contained in two "metatables", that can also be managed using the CRUDDER itself.

Project home (with examples): http://librerias.logicas.org/crudder/



Is there a good CRUD generator for CI 2.0.2? - El Forum - 04-17-2014

[eluser]ivantcholakov[/eluser]
I use the huge JavaScript DataTables http://datatables.net/. It is flexible enough for building CRUD interface. Here is an example of mine http://iridadesign.com/starter-public-edition-4/www/playground/datatables.

The relevant example with server-side processing http://iridadesign.com/starter-public-edition-4/www/playground/datatables/ssp does not work on my demo server, you may see it by running the platform locally. Visually it is the same as the previous. For easing server-side processing development I have created a special library: https://github.com/ivantcholakov/starter-public-edition-4/blob/master/platform/core/common/libraries/Datatable.php.

The pages "Add/Edit" should be built manually, I prefer it this way.

This is not an out-of-the-box solution, experience about DataTables is needed.