Managing different Bootstrap form layouts with yii2-field-range extension.

Comparing #11 with #12

Revision #12 was created by Kartik V Kartik V on Jun 1, 2014, 8:11:10 PM.

Updated description

Content

[...]
ActiveForm::end();
```

### Option 2 - Using other `ActiveForm` widgets
If you are using the `yii\bootstrap\ActiveForm` or `yii\widgets\ActiveForm`, there is no inbuilt option in the widget, but you can easily render the horizontal layout using the following approach. Basically you set `useAddons` property to `false`,
and set
tingup the CSS classes for horizontal layout, within `labelOptions`, `widgetContainer`, and `errorContainer` as shown below:


```php
<?php
use yii\widgets\ActiveForm;
[...]