ILIAS
trunk Revision v11.0_alpha-1866-gfa368f7776e
|
Functions | |
base () | |
description: > Example for rendering a pagination view control. More... | |
many_pages () | |
description: > Example of rendering a pagination view control with a lot of pages More... | |
many_pages_dropdown () | |
description: > Example of rendering a pagination view control with many pages as dropdown More... | |
no_pages () | |
description: > Example for a pagination view control with no pages More... | |
with_signal () | |
description: > Example for rendering a pagination view control with a signal More... | |
ILIAS\UI\examples\ViewControl\Pagination\base | ( | ) |
description: > Example for rendering a pagination view control.
expected output: > ILIAS shows a series of numbers 1-10 positioned between a "Back" (<) and "Next" (<) glyph. Clicking a number loads a new page: the updated number will be shown under the series of numbers, e.g. "entries 80-90" after clicking "9". You can browse the pages by using the glyphs too. Please note that the "Back" glyph can't be used on the first page and the
Definition at line 35 of file base.php.
References $DIC, ILIAS\UI\examples\Layout\Page\Standard\$refinery, $renderer, ILIAS\UI\examples\Layout\Page\Standard\$request_wrapper, and $url.
ILIAS\UI\examples\ViewControl\Pagination\many_pages | ( | ) |
description: > Example of rendering a pagination view control with a lot of pages
expected output: > ILIAS shows a series of numbers 1-500 in between the "Back" (<) and "Next" (>) glyph. The series of numbers is not displayed completely as it is limited to six elements (e.g. 1, 2, 3, 4, 5, 500). Navigating through the pagination
Definition at line 34 of file many_pages.php.
References $DIC, ILIAS\UI\examples\Layout\Page\Standard\$refinery, $renderer, ILIAS\UI\examples\Layout\Page\Standard\$request_wrapper, and $url.
ILIAS\UI\examples\ViewControl\Pagination\many_pages_dropdown | ( | ) |
description: > Example of rendering a pagination view control with many pages as dropdown
expected output: > ILIAS shows two dropdown fields in between the "Back" (<) and "Next" (>) glyph. Clicking onto one of the dropdown fields will open a list of numbers. You can navigate to other pages through clicking the number in the dropdown control. If a number was clicked you will get redirected to the specific page and the number appears also in the label of the second dropdown. You can also use the glyphs to navigate through the pages, but please note that the "Back" glyph can't be used
Definition at line 36 of file many_pages_dropdown.php.
References $DIC, ILIAS\UI\examples\Layout\Page\Standard\$refinery, $renderer, ILIAS\UI\examples\Layout\Page\Standard\$request_wrapper, and $url.
ILIAS\UI\examples\ViewControl\Pagination\no_pages | ( | ) |
description: > Example for a pagination view control with no pages
expected output: >
Definition at line 32 of file no_pages.php.
References $DIC, $renderer, and $url.
ILIAS\UI\examples\ViewControl\Pagination\with_signal | ( | ) |
description: > Example for rendering a pagination view control with a signal
expected output: > ILIAS shows a series of numbers 1-10 in between the "Back" (<) and "Next" (>) glyph. Clicking a number or a glyph
Definition at line 33 of file with_signal.php.