-
Hi, |
Beta Was this translation helpful? Give feedback.
Answered by
nd0ut
Dec 16, 2022
Replies: 1 comment
-
Hey @mnoesel, you could enable group output with css: .config {
--ctx-name: 'my-uploader';
--cfg-group-output: 1;
} and then consume it from the <lr-data-output id="output" class="config" use-event></lr-data-output> document.querySelector('#output').addEventListener('lr-data-output', (e) => {
console.log(e.detail.data.groupData.uuid)
}) Note that for now, the group info won't be updated after using the image editor. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
loookashow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @mnoesel,
you could enable group output with css:
and then consume it from the
<lr-data-output />
block:Note that for now, the group info won't be updated after using the image editor.