Selfmade TYPO3 backend modul: scrollbar problem

While programming a typo3 extension I came across the following problem: my backend module didn’t show any scrollbars. This made it impossible to scroll down to the end of a list to view all elements.

After some looking around I found the CSS class typo3-mod-php which has set the property „overflow“ to „hidden“. Seems to be ONE of the bad one to me. I don’t think it is the only reason.

To fix the problem for me I added following code to the moduleContent() method in my backend module:

[CODE PHP]
$content .= „

\n“;
[/CODE]

It’s not perfect, but it’ll have to fit until I have found something better.

Permanentlink zu diesem Beitrag: https://techblog.steffmeister.at/selfmade-typo3-backend-modul-scrollbar-problem/

Schreibe einen Kommentar

Deine Email-Adresse wird nicht veröffentlicht.

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.