sr-only hides checkbox

Issue #57 new
Dmitrijs Goroščuks created an issue

When I write form like this:

$form = $this->beginWidget(
    'bootstrap.widgets.BsActiveForm',
    array(
        'id' => 'login-form',
        'layout' => BsHtml::FORM_LAYOUT_INLINE,
        'clientOptions' => array('validateOnSubmit' => true),
        'enableAjaxValidation' => false,
    )
);

echo $form->checkBoxControlGroup($model, 'remember_me');

$this->endWidget();

I get checkbox input inside label tag and this checkbox is invisible because of sr-only class.

Comments (1)

  1. Log in to comment