The title kind of says it all. Is there any way to make the fieldset not collapsible, or just set to default open?
Never mind. I forgot you can do it through the template: $form['scheduler_settings']['#collapsed'] = FALSE;
I'm glad I could help... ;-)
You're just so good.
I know. I can even implant the solution into your brain over a distance of several thousand miles... ;-)
Thanks for the pointer. This works well in the template:
function themename_theme() { return array( // The form ID. 'event_node_form' => array( // Forms always take the form argument. 'arguments' => array('form' => NULL), ), ); } function themename_event_node_form($form) { $output = ''; $form['scheduler_settings']['#collapsed'] = FALSE; $output .= drupal_render($form); return $output; }
Nice! Thanks for info! Love u guys :D
Comments
Comment #1
wxman commentedNever mind. I forgot you can do it through the template:
$form['scheduler_settings']['#collapsed'] = FALSE;
Comment #2
eric-alexander schaefer commentedI'm glad I could help... ;-)
Comment #3
wxman commentedYou're just so good.
Comment #4
eric-alexander schaefer commentedI know. I can even implant the solution into your brain over a distance of several thousand miles... ;-)
Comment #5
dadderley commentedThanks for the pointer.
This works well in the template:
Comment #6
nicothezulu commentedNice! Thanks for info! Love u guys :D