![]() |
ADEL Codeigniter 4 CRUD generator - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Addins (https://forum.codeigniter.com/forumdisplay.php?fid=34) +--- Thread: ADEL Codeigniter 4 CRUD generator (/showthread.php?tid=77877) Pages:
1
2
|
ADEL Codeigniter 4 CRUD generator - adelbak - 10-29-2020 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] ![]() ![]() ![]() https://github.com/adelbak/Codeigniter-4-CRUD-generator ENJOY RE: ADEL Codeigniter 4 CRUD generator - InsiteFX - 10-30-2020 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. RE: ADEL Codeigniter 4 CRUD generator - adelbak - 10-30-2020 (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 toThank you for replying CRUD pagination already exist ![]() ![]() RE: ADEL Codeigniter 4 CRUD generator - InsiteFX - 10-30-2020 Ok, I saw the table in the image but no pagination was showing in it. Thanks for the update. RE: ADEL Codeigniter 4 CRUD generator - BudiAditya - 11-22-2020 Great, i really need this,.. thank you RE: ADEL Codeigniter 4 CRUD generator - guswie - 01-12-2021 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? RE: ADEL Codeigniter 4 CRUD generator - gondeaz13 - 02-15-2021 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(); RE: ADEL Codeigniter 4 CRUD generator - adelbak - 03-10-2021 (02-15-2021, 05:23 AM)gondeaz13 Wrote: the edit function in view whereThanks..Fixed RE: ADEL Codeigniter 4 CRUD generator - bobberg - 06-22-2021 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. ![]() I've tried everything I could think of. Indexing, changing the charsets, creating new DBs... Running xampp v 3.3.0 Any ideas? RE: ADEL Codeigniter 4 CRUD generator - CoijiRyuna - 07-03-2021 (01-12-2021, 09:04 AM)guswie Wrote: image at i.imgur.com/tAQF91W.jpg 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 |