I have two callback field in my grocery crud for maintaining dynamic add field and dynamic multiple select that detect change event from another field. but when i tried to save the form, the value that come from dynamic multiple select field detected as array and not sent into after insert callback.
everytime i tried to save the form , it gave this error
Error Number: 1054
Unknown column 'Array' in 'field list'
INSERT INTO `tb_master_tender` (`nomor_tender`, `no_dpb`, `nama_tender`, `keterangan`, `id_jenis`, `rekanan`, `file_url1`, `file_url2`, `total_peserta`, `wkt_kirim`, `tgl_tutup_pendaftaran`, `tgl_open`, `peminta`, `keyword`) VALUES ('123', '2345', '', '', '6', Array, '', '', '', '', '', '', '', '45624a44b8')
Filename: C:\xampp\htdocs\etender\system\database\DB_driver.php
Line Number: 330
can someone tell me where i got it wrong?