I am rendering following field using AHAH
$options = array('0' => 'zero', '1' => 'one', '2' => 'three', '4' => 'four');
$cat = array(1,2);
$fields['q_scat'] = array(
'#type' => 'select',
'#options' => $options ,
'#multiple' => 'multiple',
'#ahah' => array(
'wrapper' => 'sub-sub-cat-wrapper',
'path' => 'moderator/issue/ahah/category/sscat',
'effect' => 'fade',
'event' => 'click',
),
'#size' => 5,
'#default_value' => $cat,
'#id' => 'q_scat',
);
when executing this form, default values are not setting for the dropdown.
How to solve this?