hiddenInput() public method
Renders a hidden input.
Note that this method is provided for completeness. In most cases because you do not need to validate a hidden input, you should not need to use this method. Instead, you should use yii\helpers\Html::activeHiddenInput().
This method will generate the name
and value
tag attributes automatically for the model attribute unless they are explicitly specified in $options
.
public $this hiddenInput ( $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\helpers\Html::encode(). If you set a custom |
return | $this |
The field object itself. |
Please login to continue.