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>
Updated by Gerrit Code Review about 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/43530
Updated by Andreas Allacher about 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 0ab9af7e52006e55e4065d202d3df741079a68b3.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed
Actions