Class yii\bootstrap4\ActiveField
A Bootstrap 4 enhanced version of yii\widgets\ActiveField.
This class adds some useful features to ActiveField to render all sorts of Bootstrap 4 form fields in different form layouts:
- $inputTemplate is an optional template to render complex inputs, for example input groups
- $horizontalCssClasses defines the CSS grid classes to add to label, wrapper, error and hint in horizontal forms
- inline()/inline() is used to render inline checkboxList() and radioList()
- $enableError can be set to
false
to disable to the error - $enableLabel can be set to
false
to disable to the label - label() can be used with a
bool
argument to enable/disable the label
There are also some new placeholders that you can use in the $template configuration:
{beginLabel}
: the opening label tag{labelTitle}
: the label title for use with{beginLabel}
/{endLabel}
{endLabel}
: the closing label tag{beginWrapper}
: the opening wrapper tag{endWrapper}
: the closing wrapper tag
The wrapper tag is only used for some layouts and form elements.
Note that some elements use slightly different defaults for $template and other options. You may want to override those predefined templates for checkboxes, radio buttons, checkboxLists and radioLists in the fieldConfig of the yii\widgets\ActiveForm:
- $checkTemplate the default template for checkboxes and radios
- $radioTemplate the template for radio buttons in default layout
- $checkHorizontalTemplate the template for checkboxes in horizontal layout
- $radioHorizontalTemplate the template for radio buttons in horizontal layout
- $checkEnclosedTemplate the template for checkboxes and radios enclosed by label
Example:
use yii\bootstrap4\ActiveForm;
$form = ActiveForm::begin(['layout' => 'horizontal']);
// Form field without label
echo $form->field($model, 'demo', [
'inputOptions' => [
'placeholder' => $model->getAttributeLabel('demo'),
],
])->label(false);
// Inline radio list
echo $form->field($model, 'demo')->inline()->radioList($items);
// Control sizing in horizontal mode
echo $form->field($model, 'demo', [
'horizontalCssClasses' => [
'wrapper' => 'col-sm-2',
]
]);
// With 'default' layout you would use 'template' to size a specific field:
echo $form->field($model, 'demo', [
'template' => '{label} <div class="row"><div class="col-sm-4">{input}{error}{hint}</div></div>'
]);
// Input group
echo $form->field($model, 'demo', [
'inputTemplate' => '<div class="input-group"><div class="input-group-prepend">
<span class="input-group-text">@</span>
</div>{input}</div>',
]);
ActiveForm::end();
See also:
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$addAriaAttributes | boolean | Adds aria HTML attributes aria-required and aria-invalid for inputs |
yii\widgets\ActiveField |
$attribute | string | The model attribute that this field is associated with. | yii\widgets\ActiveField |
$behaviors | yii\base\Behavior[] | List of behaviors attached to this component. | yii\base\Component |
$checkEnclosedTemplate | string | The enclosed by label template for checkboxes and radios in default layout |
yii\bootstrap4\ActiveField |
$checkHorizontalTemplate | string | The template for checkboxes and radios in horizontal layout | yii\bootstrap4\ActiveField |
$checkOptions | array | The default options for the input checkboxes. | yii\bootstrap4\ActiveField |
$checkTemplate | string | The template for checkboxes in default layout | yii\bootstrap4\ActiveField |
$enableAjaxValidation | boolean|null | Whether to enable AJAX-based data validation. | yii\widgets\ActiveField |
$enableClientValidation | boolean|null | Whether to enable client-side data validation. | yii\widgets\ActiveField |
$enableError | boolean | Whether to render the error. | yii\bootstrap4\ActiveField |
$enableLabel | boolean | Whether to render the label. | yii\bootstrap4\ActiveField |
$errorOptions | array | The default options for the error tags. | yii\bootstrap4\ActiveField |
$form | yii\widgets\ActiveForm | The form that this field is associated with. | yii\widgets\ActiveField |
$hintOptions | array | The default options for the hint tags. | yii\bootstrap4\ActiveField |
$horizontalCssClasses | null|array | CSS grid classes for horizontal layout. | yii\bootstrap4\ActiveField |
$inline | boolean | Whether to render checkboxList() and radioList() inline. | yii\bootstrap4\ActiveField |
$inputOptions | array | The default options for the input tags. | yii\bootstrap4\ActiveField |
$inputTemplate | string|null | Optional template to render the {input} placeholder content |
yii\bootstrap4\ActiveField |
$labelOptions | array | The default options for the label tags. | yii\bootstrap4\ActiveField |
$model | yii\base\Model | The data model that this field is associated with. | yii\widgets\ActiveField |
$options | array | The HTML attributes (name-value pairs) for the field container tag. | yii\bootstrap4\ActiveField |
$parts | array | Different parts of the field (e.g. input, label). | yii\widgets\ActiveField |
$radioHorizontalTemplate | string | The template for checkboxes and radios in horizontal layout | yii\bootstrap4\ActiveField |
$radioOptions | array | The default options for the input radios. | yii\bootstrap4\ActiveField |
$radioTemplate | string | The template for radios in default layout | yii\bootstrap4\ActiveField |
$selectors | array | The jQuery selectors for selecting the container, input and error tags. | yii\widgets\ActiveField |
$template | string | The template that is used to arrange the label, the input field, the error message and the hint text. | yii\widgets\ActiveField |
$validateOnBlur | boolean|null | Whether to perform validation when the input field loses focus. | yii\widgets\ActiveField |
$validateOnChange | boolean|null | Whether to perform validation when the value of the input field is changed. | yii\widgets\ActiveField |
$validateOnType | boolean|null | Whether to perform validation while the user is typing in the input field. | yii\widgets\ActiveField |
$validationDelay | integer|null | Number of milliseconds that the validation should be delayed when the user types in the field
and $validateOnType is set true . |
yii\widgets\ActiveField |
$wrapperOptions | array | Options for the wrapper tag, used in the {beginWrapper} placeholder |
yii\bootstrap4\ActiveField |
Public Methods
Method | Description | Defined By |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\Component |
__clone() | This method is called after the object is created by cloning an existing one. | yii\base\Component |
__construct() | Constructor. | yii\bootstrap4\ActiveField |
__get() | Returns the value of a component property. | yii\base\Component |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\Component |
__set() | Sets the value of a component property. | yii\base\Component |
__toString() | PHP magic method that returns the string representation of this object. | yii\widgets\ActiveField |
__unset() | Sets a component property to be null. | yii\base\Component |
attachBehavior() | Attaches a behavior to this component. | yii\base\Component |
attachBehaviors() | Attaches a list of behaviors to the component. | yii\base\Component |
begin() | Renders the opening tag of the field container. | yii\widgets\ActiveField |
behaviors() | Returns a list of behaviors that this component should behave as. | yii\base\Component |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\Component |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\Component |
checkbox() | Renders a checkbox. | yii\bootstrap4\ActiveField |
checkboxList() | Renders a list of checkboxes. | yii\bootstrap4\ActiveField |
className() | Returns the fully qualified name of this class. | yii\base\BaseObject |
detachBehavior() | Detaches a behavior from the component. | yii\base\Component |
detachBehaviors() | Detaches all behaviors from the component. | yii\base\Component |
dropDownList() | Renders a drop-down list. | yii\widgets\ActiveField |
dropdownList() | yii\bootstrap4\ActiveField | |
end() | Renders the closing tag of the field container. | yii\widgets\ActiveField |
ensureBehaviors() | Makes sure that the behaviors declared in behaviors() are attached to this component. | yii\base\Component |
error() | Generates a tag that contains the first validation error of $attribute. | yii\widgets\ActiveField |
fileInput() | Renders a file input. | yii\bootstrap4\ActiveField |
getBehavior() | Returns the named behavior object. | yii\base\Component |
getBehaviors() | Returns all behaviors attached to this component. | yii\base\Component |
hasEventHandlers() | Returns a value indicating whether there is any handler attached to the named event. | yii\base\Component |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\Component |
hasProperty() | Returns a value indicating whether a property is defined for this component. | yii\base\Component |
hint() | Renders the hint tag. | yii\widgets\ActiveField |
init() | Initializes the object. | yii\base\BaseObject |
inline() | yii\bootstrap4\ActiveField | |
input() | Renders an input tag. | yii\widgets\ActiveField |
label() | Generates a label tag for $attribute. | yii\bootstrap4\ActiveField |
listBox() | Renders a list box. | yii\bootstrap4\ActiveField |
off() | Detaches an existing event handler from this component. | yii\base\Component |
on() | Attaches an event handler to an event. | yii\base\Component |
passwordInput() | Renders a password input. | yii\widgets\ActiveField |
radio() | Renders a radio button. | yii\bootstrap4\ActiveField |
radioList() | Renders a list of radio buttons. | yii\bootstrap4\ActiveField |
render() | Renders the whole field. | yii\bootstrap4\ActiveField |
staticControl() | Renders Bootstrap static form control. | yii\bootstrap4\ActiveField |
textInput() | Renders a text input. | yii\widgets\ActiveField |
textarea() | Renders a text area. | yii\widgets\ActiveField |
trigger() | Triggers an event. | yii\base\Component |
widget() | Renders a widget as the input of the field. | yii\widgets\ActiveField |
Protected Methods
Method | Description | Defined By |
---|---|---|
addAriaAttributes() | Adds aria attributes to the input options. | yii\widgets\ActiveField |
addErrorClassIfNeeded() | Adds validation class to the input options if needed. | yii\widgets\ActiveField |
addRoleAttributes() | Add role attributes to the input options | yii\widgets\ActiveField |
adjustLabelFor() | Adjusts the for attribute for the label based on the input options. |
yii\widgets\ActiveField |
createLayoutConfig() | yii\bootstrap4\ActiveField | |
getClientOptions() | Returns the JS options for the field. | yii\widgets\ActiveField |
getInputId() | Returns the HTML id of the input element of this form field. |
yii\widgets\ActiveField |
isAjaxValidationEnabled() | Checks if ajax validation enabled for the field. | yii\widgets\ActiveField |
isClientValidationEnabled() | Checks if client validation enabled for the field. | yii\widgets\ActiveField |
renderLabelParts() | yii\bootstrap4\ActiveField |
Property Details
The enclosed by label
template for checkboxes and radios in default layout
The template for checkboxes and radios in horizontal layout
The default options for the input checkboxes. The parameter passed to individual input methods (e.g. checkbox()) will be merged with this property when rendering the input tag.
If you set a custom id
for the input element, you may need to adjust the $selectors accordingly.
See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
'class' => ['widget' => 'custom-control-input'], 'labelOptions' => ['class' => ['widget' => 'custom-control-label']]]
The template for checkboxes in default layout
Whether to render the error. Default is true
except for layout inline
.
Whether to render the label. Default is true
.
The default options for the error tags. The parameter passed to error() will be merged with this property when rendering the error tag. The following special options are recognized:
tag
: the tag name of the container element. Defaults todiv
. Setting it tofalse
will not render a container tag. See also yii\helpers\Html::tag().encode
: whether to encode the error output. Defaults totrue
.
If you set a custom id
for the error element, you may need to adjust the $selectors accordingly.
The default options for the hint tags. The parameter passed to hint() will be merged with this property when rendering the hint tag. The following special options are recognized:
tag
: the tag name of the container element. Defaults todiv
. Setting it tofalse
will not render a container tag. See also yii\helpers\Html::tag().
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
Whether to render checkboxList() and radioList() inline.
The default options for the input tags. The parameter passed to individual input methods (e.g. textInput()) will be merged with this property when rendering the input tag.
If you set a custom id
for the input element, you may need to adjust the $selectors accordingly.
Optional template to render the {input}
placeholder content
The default options for the label tags. The parameter passed to label() will be merged with this property when rendering the label tag.
The HTML attributes (name-value pairs) for the field container tag.
The values will be HTML-encoded using yii\bootstrap4\Html::encode().
If a value is null
, the corresponding attribute will not be rendered.
The following special options are recognized:
tag
: the tag name of the container element. Defaults todiv
. Setting it tofalse
will not render a container tag. See also yii\helpers\Html::tag().
If you set a custom id
for the container element, you may need to adjust the $selectors accordingly.
The template for checkboxes and radios in horizontal layout
The default options for the input radios. The parameter passed to individual input methods (e.g. radio()) will be merged with this property when rendering the input tag.
If you set a custom id
for the input element, you may need to adjust the $selectors accordingly.
See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
'class' => ['widget' => 'custom-control-input'], 'labelOptions' => ['class' => ['widget' => 'custom-control-label']]]
The template for radios in default layout
Options for the wrapper tag, used in the {beginWrapper}
placeholder
Method Details
Constructor.
The default implementation does two things:
- Initializes the object with the given configuration
$config
. - Call init().
If this method is overridden in a child class, it is recommended that
- the last parameter of the constructor is a configuration array, like
$config
here. - call the parent implementation at the end of the constructor.
public void __construct ( $config = [] ) | ||
$config | array | Name-value pairs that will be used to initialize the object properties |
Renders a checkbox.
This method will generate the checked
tag attribute according to the model attribute value.
public $this checkbox ( $options = [], $enclosedByLabel = false ) | ||
$options | array | The tag options in terms of name-value pairs. The following options are specially handled:
The rest of the options will be rendered as the attributes of the resulting tag. The values will
be HTML-encoded using yii\bootstrap4\Html::encode(). If a value is If you set a custom |
$enclosedByLabel | boolean | Whether to enclose the checkbox within the label.
If |
return | $this | The field object itself. |
---|
Renders a list of checkboxes.
A checkbox list allows multiple selection, like listBox(). As a result, the corresponding submitted value is an array. The selection of the checkbox list is taken from the value of the model attribute.
public $this checkboxList ( $items, $options = [] ) | ||
$items | array | The data item used to generate the checkboxes. The array values are the labels, while the array keys are the corresponding checkbox values. |
$options | array | Options (name => config) for the checkbox list.
For the list of available options please refer to the |
return | $this | The field object itself. |
---|
protected array createLayoutConfig ( $instanceConfig ) | ||
$instanceConfig | array | The configuration passed to this instance's constructor |
return | array | The layout specific default configuration for this instance |
---|
public void dropdownList ( $items, $options = [] ) | ||
$items | ||
$options |
Renders a file input.
This method will generate the name
and value
tag attributes automatically for the model attribute
unless they are explicitly specified in $options
.
public $this fileInput ( $options = [] ) | ||
$options | array | The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using yii\bootstrap4\Html::encode(). If you set a custom |
return | $this | The field object itself. |
---|
public $this inline ( $value = true ) | ||
$value | boolean | Whether to render a inline list |
return | $this | The field object itself Make sure you call this method before checkboxList() or radioList() to have any effect. |
---|
Generates a label tag for $attribute.
public $this label ( $label = null, $options = [] ) | ||
$label | string|null|false | The label to use. If |
$options | array|null | The tag options in terms of name-value pairs. It will be merged with $labelOptions.
The options will be rendered as the attributes of the resulting tag. The values will be HTML-encoded
using yii\bootstrap4\Html::encode(). If a value is |
return | $this | The field object itself. |
---|
Renders a list box.
The selection of the list box is taken from the value of the model attribute.
public $this listBox ( $items, $options = [] ) | ||
$items | array | The option data items. The array keys are option values, and the array values are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too). For each sub-array, an option group will be generated whose label is the key associated with the sub-array. If you have a list of data models, you may convert them into the format described above using yii\helpers\ArrayHelper::map(). Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in the labels will also be HTML-encoded. |
$options | array | The tag options in terms of name-value pairs. For the list of available options please refer to the If you set a custom |
return | $this | The field object itself. |
---|
Renders a radio button.
This method will generate the checked
tag attribute according to the model attribute value.
public $this radio ( $options = [], $enclosedByLabel = false ) | ||
$options | array | The tag options in terms of name-value pairs. The following options are specially handled:
The rest of the options will be rendered as the attributes of the resulting tag. The values will
be HTML-encoded using yii\bootstrap4\Html::encode(). If a value is If you set a custom |
$enclosedByLabel | boolean | Whether to enclose the radio within the label.
If |
return | $this | The field object itself. |
---|
Renders a list of radio buttons.
A radio button list is like a checkbox list, except that it only allows single selection. The selection of the radio buttons is taken from the value of the model attribute.
public $this radioList ( $items, $options = [] ) | ||
$items | array | The data item used to generate the radio buttons. The array values are the labels, while the array keys are the corresponding radio values. |
$options | array | Options (name => config) for the radio button list.
For the list of available options please refer to the |
return | $this | The field object itself. |
---|
Renders the whole field.
This method will generate the label, error tag, input tag and hint tag (if any), and assemble them into HTML according to $template.
public string render ( $content = null ) | ||
$content | string|callable|null | The content within the field container.
If
|
return | string | The rendering result. |
---|
protected void renderLabelParts ( $label = null, $options = [] ) | ||
$label | string|null | The label or null to use model label |
$options | array | The tag options |
Renders Bootstrap static form control.
See also https://getbootstrap.com/docs/4.5/components/forms/#readonly-plain-text.
public $this staticControl ( $options = [] ) | ||
$options | array | The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. There are also a special options:
|
return | $this | The field object itself |
---|