How do I create a dropdown without having a relationship to a field. I can't use
$crud->set_relation.....
I do want to use something like this....
$crud->field_type('Field_Name','dropdown', array('1' => 'option_1', '2' => 'option_2,'3' => 'option_3 , '4' => 'option_4'));
but from a table, for example "tbl_Test" and create a list that is not related to any other fields.
Thank you for helping.