This blog contains some of the Salesforce facts which I have found quite interesting. Happy learning.
Salesforce Fact #742 | Another POC on flow Http callout
Get link
Facebook
X
Pinterest
Email
Other Apps
Suppose we want to get the country flag image for account shipping country in account detail page. We can use HTTP callout from screen flow to get the data.
We can also pass custom apex-defined variable from flow to LWC. In this case, we have to define the property type as apex://namespace.Classname and expose the same variable as @api. Attached are the screenshots.
Suppose we have a scenario where we have a single select datatable in LWC. There is a field which is editable but it should be editable only for the selected row, for rest of the rows it would be read-only. We can implement the same with a bit of logic of JS. Attached are the screenshots.
We can pass list of Sobject records from LWC to flow as well. We need to define the list variable with @api to denote and expose as a public property in the flow. The meta file configuration remains the same i.e. define the property as @salesforce/schema/<SobjectApiName>[]. Attached are the screenshots.
Comments
Post a Comment