Welcome Guest, Not a member yet? Register   Sign In
Disabled dropdown
#1

[eluser]scherman[/eluser]
Hi, here is my problem.
I have a custom function i've created for render an html dropdown:

Code:
function form_dropdown_action($action, $name, $dato, $array_info, $data) {
  switch($action)
  {
   case 'clean':
    $value = '';
    break;
   case 'edit':
    $value = $dato;
    break;
   case 'repopulate':
    $value = set_value($name);
    break;
   case 'disable':
    $value = $dato;
    $array_info['disabled'] = 'disabled';
    break;
  }
     return form_dropdown($array_info, $data, $value);
}

It works fine except by the 'disable' status.
When the $action is 'disable', it would disable the dropdown. But it doesn't work.

I hope you can help me.

Thanks!




Theme © iAndrew 2016 - Forum software by © MyBB