How to Translate lightning components(custom labels) based on languages - salesforce

I want to add multi language functionality on my lightning component.
I am not able to find anything useful.
As now i am able to translate only currency and timepicker only.But i want to translate all the custom label (like in VF pages)..

Interesting. I'm new to lightning although I have extensive experience with Apex and so far the only way I can see this happening is to do a metadata call from Apex to generate the list of custom labels and its equivalent language and consume that that on the lightning component controller/helper via the init event. I can't find anything in the lightning developer guide on how to dynamically do this like in visualforce page.
Hope someone can confirm too.

Related

in salesforce Dynamic action filters not working for community

Dynamic action filters only work for internal users (admin) but not community view.
Scenario - I am using the dynamic action filters for the conditional rendering of button.
Dynamic Actions are not yet available in Experience Cloud, unfortunately.
There is an idea on the IdeaExchange to add it.

DocuSign Templates in Salesforce Documents

I've seen a few questions somewhat related to this, but no clear answer. This documentation makes it appear that Salesforce Documents can be used to grab a document for signature: https://developers.docusign.com/salesforce/code-examples/salesforce-embedded-sending-signing#1-create-and-send-envelope
However, when looking at the Apex Toolkit, it seems you still need to use the template methods to get a template from DocuSign with the signature tags.
I would ideally like to get this template from Salesforce if possible. Can anyone confirm if this is possible or if it's required the template live in DocuSign proper.
If it CAN live in Salesforce, how would I go about adding the anchor tags for signature and date?
manual tab placement is not available in the Apex Toolkit, but the Apex Toolkit does support anchor tagging you can't supply positional data, but you can use anchor strings to auto-tag a doc on the way out

Is posible get the values from react-stripe-elements to display it in react-credit-cards component

I would like to use the security and functionalities provided by react-stripe-elements, but show it as the data is entered in the react-credit-cards component. For this I would need to access the values that these fields would have. So it looked something like this:
How can I access the values entered in CardNumberElement, CardExpiryElement, CardCVCElement, etc. to show them in the visual component?
Is this posible? Thx in advance.
This is not possible. You must provide CSS selectors to Elements for where your sensitive inputs (credit card number, expiration date and cvc) are to be displayed on your page, and then Stripe injects an iframe into your page to create each input. You cannot access the contents of these iframes from your code.
From the Stripe docs:
To securely collect card details from your customers, Elements creates UI components for you that are hosted by Stripe. They are then placed into your payment form, rather than you creating them directly.
Not being able to access this data is actually a very good thing. There are strict and complex regulations around direct handling of credit card data, with hefty fines for failing to meet them (PCI compliance).
That being said, it is possible to customize the appearance of Stripe's injected inputs with CSS. See their custom styles docs for more details. I've found this to meet my use cases for making custom forms. You could potentially leverage some of the CSS of a design you like from the react-credit-cards library you linked.
Finally, Stripe provides their own React library that might meet your use case or at least serve as a good starting point to apply your own customizations: react-stripe-elements.

can we create a pick list in lead page layout getting data from external api

I am trying to call an external api from salesforce apex class which will get all the products.so next i want to show these products as picklist in salesforce lead creation or edit page.I am not sure its possible or not.Any solution or workaround on these is mostly appreciated.
I don't see a way to do this on a standard layout.
I personnaly could do this in a Visualforce page. Probably you probably can do this in a Lightning page as well.

How to interact Users(input form data) Using Salesforce Sites into the SalesForce Application(to Custom objects)

First of all I'm really sorry if i'm asking a Dumb Question. But unfortunately i can't find out a way to take inputs for my salesforce Application.
I am developing a simple CV Management app, but i can't figure out how to interact users(input data) to the App? I have created Candidate Custom object, and manually i can create the Candidates, but my requirement is to create records by Candidates themselves.
I followed SalesForce Tutorials and i found out a way to display data using VisualForce Custom Pages. But what i want to## Heading ## do is when i giving a link to the user, he can go to that link and there having form to fill with his personal data, and submit only. But i'm just confused how to user input data map with our Custom Candidate object fields.
when i'm searching i saw some FormAssembly and Custom VisualForce Pages. But Problem is I don't hope to use any 3rd party apps.
Tutorials says that;
In the past, to make Force.com data available to the general public, you had to set up a Web
server, create custom Web pages (JSP, PHP, or other), and use the API to integrate Force.com
apps with an external website. This is no longer the case, thanks to Sites!
Please if you can, help me Friends, Really Appreciate it & Thank you soo much..
You'll probably want to do something along these lines...
Create a Visualforce page with standard controller set to your custom object which is the "CV Entry" page (to send candidates to)
Create a Force.com site in your salesforce org to allow public or restricted access to the page
Setup page authentication/permissions as required

Resources