Oh well, I finally got the value through $this->input->post.... any specific reason why I couldnt get it through the values[] array?
Cheers and big ups to a awesome CMS....
Still no fix here... I created a custom select dropdown field with form_fields function and I still get the same error.. Any idea what might be causing this?
Exactly...Below is my on_before_validate function
function on_before_validate($values){
//$values['product_package_id'] = $values['package_id'] ;
if(isset($values['package_id'] )){
$values['package_name'] = $values['package_id'] ;
…