Questions tagged [third-party]
The third-party tag has no summary.
56 questions
2 votes
1 answer
164 views
How to allow VF page microphone access via iframe inside LWC component?
I am trying to embed an external widget inside a Visualforce page, which is then embedded within an LWC (Lightning Web Component) using an iframe. The Visualforce page uses JavaScript to initialise ...
1 vote
1 answer
126 views
NMI CollectJS for Payment Processing in LWC on a Digital Experience
I'm developing an integration with a payment processor using LWC and the CollectJS library used by NMI (See Documentation Here). Ideally, I want to embed the CollectJS component in a flow screen so ...
2 votes
1 answer
290 views
Import PDF.js into an LWC
I've uploaded a minified pdf.js file (CDN link) into a static resource, but when trying to use it, pdfjsLib is undefined no matter what I try. It was my unstanding that pdfjsLib would be defined and ...
0 votes
0 answers
151 views
Third party javascript libraries and keeping them up to date
So our org uses a multitude of third party javascript libraries; for example jquery and usually stored as a static resource. One problem is sometimes these are used in externally facing components, so ...
0 votes
0 answers
46 views
Kakao JS SDK Calls in Salesforce
I'm trying to develop a Salesforce component that makes a request to KAKAO API using the KAKAO JavaScript SDK. this is my lwc Javascript code to initiate Kakao App import {LightningElement} from 'lwc'...
1 vote
1 answer
197 views
Privacy Manifest & Updating MarketingCloudSDK from 7.6.0 to 8.1.2
To be compliant with Apple's new third party SDK requirements on user data collection and usage privacy guidelines, i'm trying to update to the latest MarketingCloudSDK version 8.1.2. The ...
1 vote
1 answer
184 views
Unable to Embed TinyMCE 6 Text Editor into VisualForce Page
I'm facing an issue while trying to embed TinyMCE 6 text editor into a VisualForce page. I have attempted the solution mentioned here, which suggests uploading only the tinymce.min.js JavaScript file ...
1 vote
0 answers
707 views
Integration of TinyMCE with LWC not working properly
I'm currently working on incorporating TinyMCE as a LWC component into my Salesforce application. I've been following the instructions outlined in this link. Also, I tested code in Locker console and ...
1 vote
1 answer
5k views
Difference between lightning-file-upload and lightning-input type="file"
I am using PapaParse to parse my CSV file and the function is expecting the parameter which is the File object. When I use lightning-input type=file the function is working but the file collected ...
0 votes
1 answer
495 views
QR Codes from a third party - what are the most scalable options
Until recently we were using the BarcodeURL ampscript function to generate readable barcodes for a ticketed event. The business now want to switch to a QR code instead. As Marketing Cloud does not ...
1 vote
1 answer
1k views
PapaParse in LWC after Winter '23 heightened security?
I am trying to use PapaParse (a Javascript CSV analyzer library) in a Lightning Web Component. A lightning modal hosts the tool. Although I have seen examples of doing so in the past, I have been ...
3 votes
1 answer
2k views
Is there a decent WYSIWG HTML editor that will run inside an LWC?
We have some requirements pushing us towards a better HTML editor than the default rich text field editor. The first one I found Googling is from Froala but a few years ago it didn't work inside an ...
-3 votes
1 answer
54 views
This is my class for httppost request ,so i want to send the response code with error message when the request is come into the system [closed]
This is my code, what I want to send is if request is sucessfully created then send code 201 with sucess message and if not created then send 501 with error message @RestResource(urlMapping='/...
3 votes
1 answer
1k views
Third-party js lib not being displayed in canvas LWC (Fabric.js lib)
I'm trying to display some shapes using the Fabric.js library. From the console, seems like the fabric.canvas is built correctly, but nothing is being rendered. My code: HTML <template> <...
5 votes
0 answers
2k views
Third Party Library DOMPurify on lwc - Failed to execute 'createNodeIterator' on 'Document'
I'm trying to load DOMPurify in lwc in order to sanitize some data, but I cannot find a way to make the library work. I've tried with the minified js file as static resource, with the full files, and ...