<?php
class Application_Form_Example14 extends Twitter_Bootstrap3_Form_Vertical
{
public function init()
{
$this->addElement('multiCheckbox', 'checkbox1', [
'multiOptions' => [
'1' => 'One',
'2' => 'Two',
],
'disable' => ['2'],
'inline' => true,
]);
$this->addElement('radio', 'radio2', [
'multiOptions' => [
'1' => 'One',
'2' => 'Two',
],
'disable' => ['2'],
'inline' => true,
]);
$this->addElement('checkbox', 'checkbox3', [
'label' => 'checkbox',
'checkedValue' => '1',
'uncheckedValue' => '0',
]);
$this->addElement('checkbox', 'checkbox4', [
'label' => 'checkbox',
'checkedValue' => '1',
'uncheckedValue' => '0',
'disabled' => true,
]);
$this->addElement('multiCheckbox', 'checkbox5', [
'multiOptions' => [
'1' => 'One',
'2' => 'Two',
],
'disable' => ['2'],
]);
$this->addElement('radio', 'radio6', [
'multiOptions' => [
'1' => 'One',
'2' => 'Two',
],
'disable' => ['2'],
]);
}
}