May 2022

Salesforce

Highlight and Bold Matching Text Salesforce Lightning Web Component LWC

Sample Code:HTML: <template>     <lightning-card title="Highlight and Bold Matching Text">         <div onkeyup={handleKeyUp} class="slds-m-around_medium">             <lightning-input                 label="Search"                 type="search"                 onchange={handleChange}                 value={searchKey}             ....

Salesforce

How to highlight matching text in Salesforce using Lightning Web Component(LWC)?

Sample Code: HTML: <template>     <lightning-card title="Highlight Matching Text">         <div onkeyup={handleKeyUp} class="slds-m-around_medium">             <lightning-input                 label="Search"                 type="search"                 onchange={handleChange}                 value={searchKey}             ></lightning-input> ....

Salesforce

How to display matching text in bold in Salesforce using Lightning Web Component(LWC)?

Sample Code: HTML: <template>     <lightning-card title="Bold Matching Text">         <div onkeyup={handleKeyUp} class="slds-m-around_medium">             <lightning-input                 label="Search"                 type="search"                 onchange={handleChange}                 value={searchKey}             ></lightning-input> ....

Salesforce

Asynchronous Salesforce Flow Limit

Please note that both the asynchronous and scheduled paths in the Salesforce Flows are subject to the same asynchronous per-transaction Apex limits.Reference Article:https://help.salesforce.com/s/articleView?id=release-notes.rn_automate_flow_builder_asynchronous_path.htm&type=5&release=234Check "Per-Transaction Apex Limits" in https://developer.salesforce.com/docs/atlas.en-us.236.0.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_apexgov.htm. The "Asynchronous ....