Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/js/data/yii.activeForm.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<form id="w1">
<fieldset disabled="">
<div class="form-group required">
<label class="control-label" for="test_text">Test text</label>
<label class="control-label" for="test_text"><legend>Test text</legend></label>
<input type="text" id="test_text" class="form-control" name="Test[text]" aria-required="true">
<div class="help-block"></div>
</div>
</fieldset>

<fieldset disabled="">
<div class="form-group required">
<label class="control-label">Test radio</label>
<label class="control-label"><legend>Test radio</legend></label>
<input type="hidden" name="Test[radio]" value="">
<div id="test_radio" aria-required="true">
<label><input type="radio" name="Test[radio]" value="1"> Test1</label>
Expand All @@ -25,7 +25,7 @@

<fieldset disabled="">
<div class="form-group required">
<label class="control-label">Test checkbox</label>
<label class="control-label"><legend>Test checkbox</legend></label>
<input type="hidden" name="Test[checkbox]" value="">
<div id="test_checkbox" aria-required="true">
<label><input type="checkbox" name="Test[checkbox][]" value="1"> Test1</label>
Expand Down