Project

General

Profile

Actions

Task #104798

closed

Anchors are used instead of buttons to collapse panels

Added by Benjamin Kott 3 months ago. Updated about 1 month ago.

Status:
Closed
Priority:
Must have
Assignee:
Category:
Backend User Interface
Target version:
Start date:
2024-09-03
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

Anchors are used instead of buttons to collapse the panels and need migration to <button>.

<div class="panel-group" id="simple-panel" role="tablist">
        <div class="panel panel-default">
                <div class="panel-heading" role="tab" id="simple-panel-1-heading">
                        <h3 class="panel-title">
                                <a href="#simple-panel-1" class="collapsed" role="button" data-bs-toggle="collapse" aria-expanded="false" aria-controls="simple-panel-1">
                                        <span class="caret"></span>
                                        <strong>Panel element 1</strong>
                                </a>
                        </h3>
                </div>
                <div id="simple-panel-1" class="panel-collapse collapse" role="tabpanel" data-bs-parent="#simple-panel" aria-labelledby="simple-panel-1-heading">
                        <div class="panel-body">...</div>
                </div>
        </div>
        <div class="panel panel-default">
                <div class="panel-heading" role="tab" id="simple-panel-2-heading">
                        <h3 class="panel-title">
                                <a href="#simple-panel-2" class="collapsed" role="button" data-bs-toggle="collapse" aria-expanded="false" aria-controls="simple-panel-2">
                                        <span class="caret"></span>
                                        <strong>Panel element 2</strong>
                                </a>
                        </h3>
                </div>
                <div id="simple-panel-2" class="panel-collapse collapse" role="tabpanel" data-bs-parent="#simple-panel" aria-labelledby="simple-panel-2-heading">
                        <div class="panel-body">...</div>
                </div>
        </div>
</div>

Related issues 1 (1 open0 closed)

Related to TYPO3 Core - Task #104796: Use buttons instead of anchors for javascript handled actionsNew2024-09-09

Actions
Actions

Also available in: Atom PDF