[TYPO3-content-rendering] accessible pagebrowser

Ernesto Baschny [cron IT] ernst at cron-it.de
Tue Jan 17 09:56:25 CET 2006


Elmar Hinz schrieb am 16.01.2006 21:15:

> is there an alternative pagebrowser available, that works without a table and
> more intuitive to use? I don't find something like this in TER.

If you mean the pagebrowser that pibase::pi_list_browseresults()
generates, you can change the appearance of that using some wraps (which
your plugin must pass to the call in the third argument), which by
default render some table with cells. But its easy to create a UL from it:

  browseLinksWrap = <ul>|</ul>
  showResultsNumbersWrap = <span class="pagebrowser-number">|</span>
  disabledLinkWrap = <li class="disabled">|</li>
  inactiveLinkWrap = <li class="inactive">|</li>
  activeLinkWrap = <li class="current">|</li>

In tt_news for example is able to use TYPO3's pagebrowser instead of its
own, which you can then layout the way you like.

See
http://typo3.org/documentation/document-library/tt_news/Configuration-1/
a search for "usePiBasePagebrowser".

Cheers,
Ernesto



More information about the TYPO3-project-content-rendering mailing list