Welcome Guest, Not a member yet? Register   Sign In
ADEL Codeigniter 4 CRUD generator
#1
Star 

ADEL CODEIGNITER 4 CRUD GENERATOR

ADEL CCG is an easy open-source intuitive web app to create AdminLTE3 -Bootstrap 4- dashboards with CRUD operations in php.
The CRUD application is able to manage data from any MySQL database, however complex the structure and volume of data are.
It ships with powerful API, Controller, Model, View generator to speed up the development of your CMS, CRM or other back-office system.



[Video: https://www.youtube.com/watch?v=Oge6rGn8FpI]

[Image: 6eQOlV9.png][Image: Jb3gxs2.png][Image: ppuMReh.png]

https://github.com/adelbak/Codeigniter-4-CRUD-generator

ENJOY
Reply
#2

This is great, but you forgot one thing and I' am sure everyone else will point this out to
you also.

You are forgetting to add pagination to CRUD tables.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

(10-30-2020, 12:38 AM)InsiteFX Wrote: This is great, but you forgot one thing and I' am sure everyone else will point this out to
you also.

You are forgetting to add pagination to CRUD tables.
Thank you for replying

CRUD pagination already exist Wink , Im using datatables library.

[Image: ee9hcVW.png]
Reply
#4

Ok, I saw the table in the image but no pagination was showing in it.
Thanks for the update.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#5

Great, i really need this,.. thank you
Reply
#6

(This post was last modified: 01-12-2021, 09:30 AM by php_rocs.)

image at i.imgur.com/tAQF91W.jpg

I use PHP 7.2 and get message Deprecated  after select Table.
what the php version should we use?
How about upload file in input type, can add upload file please?
Reply
#7

(This post was last modified: 02-15-2021, 06:00 AM by gondeaz13.)

the edit function in view where
function edit(id) {
$.ajax({
url: '<?php echo base_url($controller.'/getOne') ?>',
type: 'post',
data: {
id: id
},

is not working, any solution?

edit: solved
replace missing placeholdername in /mvc_templates/en_Controler.tpl.php
change
67: $data = $this->sourcesModel->where('@@@primaryKey@@@' ,$id)->first();
to
67: $data = $this->@@@modelName@@@->where('@@@primaryKey@@@' ,$id)->first();
Reply
#8

(02-15-2021, 05:23 AM)gondeaz13 Wrote: the edit function in view where
function edit(id) {
        $.ajax({
            url: '<?php echo base_url($controller.'/getOne') ?>',
            type: 'post',
            data: {
                id: id
            },

is not working, any solution?

edit: solved
replace missing placeholdername in /mvc_templates/en_Controler.tpl.php
change
67: $data = $this->sourcesModel->where('@@@primaryKey@@@' ,$id)->first();
to
67: $data = $this->@@@modelName@@@->where('@@@primaryKey@@@' ,$id)->first();
Thanks..Fixed
Reply
#9

(This post was last modified: 06-22-2021, 04:40 AM by bobberg.)

Hey,

I hope you could help me out. For some reasons I don't see any tables in the database. It sees the Database, but no tables.
  [Image: Screenshot-2021-06-22-133537.png]
I've tried everything I could think of. Indexing, changing the charsets, creating new DBs...
Running xampp v 3.3.0
Any ideas?
Reply
#10

(01-12-2021, 09:04 AM)guswie Wrote: image at i.imgur.com/tAQF91W.jpg

I use PHP 7.2 and get message Deprecated  after select Table.
what the php version should we use?
How about upload file in input type, can add upload file please?

change this ajax
submitHandler: function(form) {
                var formData = new FormData(form);
                $(".text-danger").remove();
                $.ajax({
                    url: '<?php echo base_url($controller . '/add'?>',
                    type: 'post',
                    dataType: 'json',
                    data: formData// form.serialize(),
                    mimeType: "multipart/form-data",

on Controler now you  can gate name of file 
and add file name to your data base and you can upload your file on folder aplication
Reply




Theme © iAndrew 2016 - Forum software by © MyBB