프로퍼티 |
타입 |
설명 |
|
$attributeDefaults |
|
the default settings that will be applied for all attributes. The array will be configured similar to
a single attribute setting value in the Form::$attributes array. One will typically default markup and styling
like type, container, prepend, append etc. The settings at the [[Form::$attributes]] level will override
these default settings. |
|
$autoGenerateColumns |
|
calculate the number of columns automatically based on count of attributes configured in the Form
widget. Columns will be created max upto the [[Form::GRID_WIDTH]]. This can be overridden at the [[rows]] level. |
|
$columnOptions |
|
the HTML attributes for the grid columns. Applicable only if [[columns]] is greater than 1. |
|
$columnSize |
|
the bootstrap device size for rendering each grid column. Defaults to [[SIZE_SMALL]]. This property
can be overridden at the [[rows]] level. |
|
$columns |
|
the number of columns for each row. This property can be overridden at the [[rows]] level. |
|
$fieldSetOptions |
|
the HTML attributes for the field/attributes container. The following options are additionally
recognized:
- tag: _string_, the HTML tag for the container. Defaults to fieldset.
This property can be overridden by options setting at the [[rows]] level. |
|
$form |
|
the form instance. |
|
$formName |
|
the form name to be provided if not using with model and ActiveForm. |
|
$model |
|
the model used for the form. |
|
$rowOptions |
|
the HTML attributes for the rows. Applicable only if [[columns]] is greater than 1. This property can
be overridden at the [[rows]] level. |
|
$rows |
|
the grid rows containing form configuration elements. |
|