How to use THIS operator in Style in Salesforce Lightning Component?
Sample Code: Component: <aura:component > <H1>Testing Head Tag </H1> </aura:component> Style: .THIS { } H1.THIS { font-size:18px; } Cheers!!!
Sample Code: Component: <aura:component > <H1>Testing Head Tag </H1> </aura:component> Style: .THIS { } H1.THIS { font-size:18px; } Cheers!!!
Send the Right Message with Salesforce Engage in Lightning Be first, be relevant, be productive – with each and every prospect you speak to. Salesforce Engage provides the exact insights ....
A native Salesforce app that helps you and your team close deals even faster. With Salesforce CPQ, you and your sales team can create quotes quickly, with minimal effort and ....
Desk.com is Case-Centric. Solving cases from different channels like Facebook, Twitter, etc. It is an all-in-one platform for responding to customer inquiries across multiple channels and providing online self-service content. ....
Use Metadata Relationship field to relate one metadata type to another in Salesforce. Cheers!!!
Check the below SOQL to get records which are modified in last 5 days. Sample SOQL: SELECT Name, Id, LastModifiedDate FROM Account WHERE LastModifiedDate = LAST_N_DAYS:5
Below is the SOQL to query data which was modified between 4 PM and 6 PM. Sample SOQL: SELECT Id, LastModifiedDate FROM Account WHERE LastModifiedDate = TODAY AND HOUR_IN_DAY(LastModifiedDate) >= ....
LIKE operator in SOQL can be used against set of strings. Use : to check against Set < String > variable. Check the following code for reference. Sample Code: Set ....
Sample Code: Visualforce Page: <apex:page controller="Sample"> <apex:form > <apex:pageBlock > <apex:pageBlockSection > ....
1. Go to Case page layouts. 2. Create a new Page Layout. 3. Enable Feed-Based Layout. Cheers!!!