Hi,

Anyone can help to build optgroup element in the selection option as below in the form element


Volvo
Saab


Mercedes
Audi

Thankyou

Comments

searchmax’s picture

Hi,

Anyone can help to build optgroup element in the selection option as below in the form element

select
optgroup label="Swedish Cars"
option value ="volvo">Volvo
option value ="saab">Saab
/optgroup
optgroup label="German Cars"
option value ="mercedes">Mercedes
option value ="audi">Audi
/optgroup
/select

kpander’s picture

Hey,

Something like this will do it:

$form['cars'] = array(
     '#type' => 'select',
     '#options' => array(
          'Swedish Cars' => array('volvo' => 'Volvo', 'saab' => 'Saab'),
          'German Cars' => array('mercedes' => 'Mercedes', 'audi' => 'Audi'),
     ),
);

Enjoy!

Kendall
Abandoned Industry :: http://invisiblethreads.com ::

searchmax’s picture

Thanks a lot Kendall.