bootstrap\ActiveField $wrapperOptions

$wrapperOptions public property Options for the wrapper tag, used in the {beginWrapper} placeholder public array $wrapperOptions = []

bootstrap\ActiveField checkbox()

checkbox() public method Renders a checkbox. This method will generate the checked tag attribute according to the model attribute value. public $this checkbox ( $options = [], $enclosedByLabel = true )$options array The tag options in terms of name-value pairs. The following options are specially handled: uncheck: string, the value associated with the uncheck state of the radio button. If not set, it will take the default value 0. This method will render a hidden input so that if the ra

bootstrap\ActiveField $inlineCheckboxListTemplate

$inlineCheckboxListTemplate public property The template for inline checkboxLists public string $inlineCheckboxListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}"

bootstrap\ActiveField $radioTemplate

$radioTemplate public property The template for radios in default layout public string $radioTemplate = "<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>"

bootstrap\ActiveField $inlineRadioListTemplate

$inlineRadioListTemplate public property The template for inline radioLists public string $inlineRadioListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}"

bootstrap\ActiveField $inputTemplate

$inputTemplate public property Optional template to render the {input} placeholder content public string|null $inputTemplate = null

bootstrap\ActiveField $horizontalCheckboxTemplate

$horizontalCheckboxTemplate public property The template for checkboxes in horizontal layout public string $horizontalCheckboxTemplate = "{beginWrapper}\n<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}"

bootstrap\ActiveField $inline

$inline public property Whether to render checkboxList() and radioList() inline. public boolean $inline = false

bootstrap\ActiveField $horizontalRadioTemplate

$horizontalRadioTemplate public property The template for radio buttons in horizontal layout public string $horizontalRadioTemplate = "{beginWrapper}\n<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}"

bootstrap\ActiveField $horizontalCssClasses

$horizontalCssClasses public property CSS grid classes for horizontal layout. This must be an array with these keys: 'offset' the offset grid class to append to the wrapper if no label is rendered 'label' the label grid class 'wrapper' the wrapper grid class 'error' the error grid class 'hint' the hint grid class public null|array $horizontalCssClasses = null