19 declare(strict_types=1);
37 $factory = $DIC->ui()->factory();
58 'How I Met Your Mother',
60 $list =
$renderer->render($factory->listing()->unordered($series));
67 $content =
"<div style='max-height: 200px; overflow-y: auto; padding-right: 10px;'>{$list}</div>";
69 $popover = $factory->popover()->standard($factory->legacy()->content($content))->
withTitle(
'Series');
70 $button = $factory->button()->standard(
'Show me some Series',
'#')
71 ->withOnClick($popover->getShowSignal());
73 return $renderer->render([$popover, $button]);
show_popover_with_vertical_scrollbars()
description: > Example for rendering a standard popover with vertical scrollbars.