German formal - SieEnglish
 
 
 
News arrow Web arrow Code Snippets arrow Joomla: Listenlänge im Backend
Joomla: Listenlänge im Backend | Print |  E-mail

Ich finde es nervig zu blättern - lieber nehme ich eine längere Ladezeit in Kauf. Listen sind oft länger als die maximal "50" in Joomla -
und hier läßt sich das ändern:

Backend:   /administrator/includes/pageNavigation.php

In Joomla 1.0.13: Zeile 48 sieht so aus:

        $limits[] = mosHTML::makeOption( "50" );

Füge hier einfach beliebige Zeilen hinzu, Bespiel:

        $limits[] = mosHTML::makeOption( "50" );
        $limits[] = mosHTML::makeOption( "75" );
        $limits[] = mosHTML::makeOption( "100" );
        $limits[] = mosHTML::makeOption( "200" );

Für das Frontend gilt das Gleiche, die zu ändernde Datei: /includes/pageNavigation.php

Um diese Auswahl auch in der Global Configuration einstellen zu können, muss man noch eine weitere Datei ändern:

        /administrator/components/com_config/admin.config.php

Zeile  125 füge hinzu:

    mosHTML::makeOption( 50, 50 ),
    mosHTML::makeOption( 75, 75 ),
    mosHTML::makeOption( 100, 100 ),
    mosHTML::makeOption( 200, 200 ),


Last Updated ( Wednesday, 29 August 2007 )
 

© 1997 - 2010  R3D - Webentwicklung  - Webentwicklung, Photographie & Netzwerk