Display an Album in a Lightning Web Component
Call SharinPix Album (LWC) inside Lightning Web Component
<template>
<sharinpix-album record-id={recordId} enable-image-sync={enableImageSync}
height={height} fullscreen-allowed={fullscreenAllowed}
enable-action={enableAction} enable-toast={enableToast}
permission-id={permissionId} tags={tags} auto-tags={autoTags}
component-id={componentId}></sharinpix-album>
</template>import { LightningElement, api } from 'lwc';
export default class ParentAlbum extends LightningElement {
@api recordId
enableImageSync = true
height = 600
fullscreenAllowed = true
enableAction = true
enableToast = true
permissionId = 'SharinPixPermissionName'
tags = 'tag1;tag2'
autoTags = 'autoTag1'
componentId = 'album'
}PreviousGenerate token from SharinPix Permission with ApexNextDisplay an upload button in a Lightning Web Component
Last updated
Was this helpful?

