(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();