can you please tell me how to edit data inside auto generated field (type: select "ComboBox") without changing html (design)
means i don't want to use my own html i want to use the same auto generated field html but custom data.
Thank you
i'll show you what i want to do exactly :
please take a look at db.png first
$crud->set_table('employee');
$crud->set_relation('BankBranch_idBankBranch', 'BankBranch', '{Bank_idBank} / {BankBranchName}');
this code will show the id of the bank but i want the name of the bank
i managed to make a callback to get the bankName / BankBranchName but without the auto field html (design)
Thank you again