leftSection = new HalfPageSection('leftSection'); $this->rightSection = new HalfPageSection('rightSection'); $this->addSection($this->leftSection) ->addSection($this->rightSection); $this->initFields(); } private function initFields() { //Boot Device 1 $field = new Select('customconfigoption[bootDevice1]'); $field->setDescription('tip'); $this->leftSection->addField($field); //Boot Device 2 $field = new Select('customconfigoption[bootDevice2]'); $field->setDescription('tip'); $this->rightSection->addField($field); //Boot Device 3 $field = new Select('customconfigoption[bootDevice3]'); $field->setDescription('tip'); $this->leftSection->addField($field); //Boot Disk $field = new Text('customconfigoption[bootdisk]'); $field->setDescription('tip'); $this->rightSection->addField($field); } }