11 $f = $DIC->ui()->factory();
12 $renderer = $DIC->ui()->renderer();
15 $image =
$f->image()->standard(
16 "src/UI/examples/Image/HeaderIconLarge.svg",
19 ->withAdditionalOnLoadCode(
function ($id) {
20 return "$('#$id').click(function(e) { e.preventDefault(); alert('Image Onload Code')});";
23 $html = $renderer->render($image);
with_additional_on_load_code()
Example showing how JS-Code can be attached to images.