It looks like you're new here. If you want to get involved, click one of these buttons!
$feedback_options = array('1' => '1', '2' => '2', '3' => '3', '4' => '4', '5' => '5');
$feedback_select_type = 'radios';
$feedback_radio_array = array(
'type' => 'enum',
'mode' => $feedback_select_type,
'options' => $feedback_options,
'spacer' => NULL,
'row_class' => 'radio-array',
'checked' => FALSE
);
Comments
... </tbody> </table> </fieldset> <table><tbody>
around the last fieldset tag rendered?
Regarding the default checked status of the radio buttons,which parameter specifically should set to TRUE?
$feedback_radio_array = array( 'type' => 'enum', 'mode' => $feedback_select_type, 'options' => $feedback_options, 'spacer' => NULL, 'row_class' => 'radio-array', 'checked' => FALSE, 'null' => TRUE );