Actions
Bug #70061
closedIE11: Mutliple clipboard checkboxes not selectable (DatabaseRecordList)
Start date:
2015-09-24
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If I choose the clipboard to be for multiple records.
The checkboxes are not selectable in IE11.
The reason is that:
<label class="btn btn-default btn-checkbox"><input type="hidden" name="CBH[' . $n . ']" value="0" /><input type="checkbox"' . ' name="CBC[' . $n . ']" value="1" ' . $checked . '/><span class="t3-icon fa"></span></label>
The hidden Field is inside the label.
Instead it should be like this:
<input type="hidden" name="CBH[' . $n . ']" value="0" /><label class="btn btn-default btn-checkbox"><input type="checkbox"' . ' name="CBC[' . $n . ']" value="1" ' . $checked . '/><span class="t3-icon fa"></span></label>
Actions