yii2-bootstrap5/docs/guide/usage-widgets.md
2021-11-24 16:32:15 +03:00

3.9 KiB

Yii widgets

Most complex bootstrap components are wrapped into Yii widgets to allow more robust syntax and integrate with framework features. All widgets belong to \yii\bootstrap5 namespace:

ActiveField: additional fields

  • Range: $form->rangeInput(['min' => 0, 'max' => 100, 'step' => 1])
  • Color picker: $form->colorInput()
  • Switch: $form->checkbox(['switch' => true])

Customizing widget CSS classes

The widgets allow quick composition of the HTML for the bootstrap components that require the bootstrap CSS classes. The default classes for a particular component will be added automatically by the widget, and the optional classes that you may want to customize are usually supported through the properties of the widget.

For example, you may use yii\bootstrap5\Button::options to customize the appearance of a button. The class 'btn' which is required for a button will be added automatically, so you don't need to worry about it. All you need is specify a particular button class:

echo Button::widget([
    'label' => 'Action',
    'options' => ['class' => 'btn-primary'], // produces class "btn btn-primary"
]);

However, sometimes you may need to replace the default classes with the alternative ones. For example, the widget yii\bootstrap5\ButtonGroup uses 'btn-group' class for the container div by default, but you may need to use 'btn-group-vertical' instead to align the buttons vertically. Using a plain 'class' option simply adds 'btn-group-vertical' to 'btn-group', which will produce an incorrect result. In order to override the default classes of a widget, you need to specify the 'class' option as an array that contains the customized class definition under the 'widget' key:

echo ButtonGroup::widget([
    'options' => [
        'class' => ['widget' => 'btn-group-vertical'] // replaces 'btn-group' with 'btn-group-vertical'
    ],
    'buttons' => [
        ['label' => 'A'],
        ['label' => 'B'],
    ]
]);

Navbar widget

The navbar widget has its peculiarities. You should define at which breakpoint the navbar collapses and the generic style of navbar (color scheme).

You can change the color scheme and the collapse breakpoint with css classes. If not defined, the scheme defaults to navbar-light bg-light and the breakpoint to navbar-expand-lg. For more information, see Bootstrap documentation:

Navbar::begin([
    'options' => [
        'class' => ['navbar-dark', 'bg-dark', 'navbar-expand-md']
    ]
]);
    [...]
Navbar::end();

If you'd like to flip the brand (icon) and toggle button positions in mobile navigation, you can do this like this:

Navbar::begin([
	'brandOptions' => [
		'class' => ['order-1']
	],
	'togglerOptions' => [
		'class' => ['order-0']
	]
]);
    [...]
Navbar::end();