Refreshing SharinPix Mobile Launcher and Handling OnClick Events
1. Capturing the Button Click Event
import { LightningElement } from 'lwc';
export default class MobileLauncherParent extends LightningElement {
connectedCallback() {
window.addEventListener('sharinpix-mobile-launcher-clicked', this.handleCustomEvent);
}
handleCustomEvent(event) {
// your own logic
}
}2. Reloading the SharinPix Mobile Launcher Component
PreviousUpload Images with Custom Metadata (Developer-Oriented)NextSFS Components Configuration (Roomplan, Document Scanner, Barcode Scanner, and Image and Annotate)
Last updated
Was this helpful?

