How to hide code mini map or highlight on the right hand side in Visual Studio Code?
Go to View --> Unselect Toggle Minimap.
Go to View --> Unselect Toggle Minimap.
1. Install the below extension in Visual Studio Code. Salesforce Package.xml Generator Extension for VS Code helps in generating the package.xml file. https://marketplace.visualstudio.com/items?itemName=VignaeshRamA.sfdx-package-xml-generator 2. Pres Ctrl + Shift + P. ....
A long-running API request(inbound to Salesforce) is one that takes over 20 seconds. Salesforce allows only 25 long-running to run at a time in an organization. Concurrent Apex and Concurrent ....
When feed tracking is enabled for cases or work orders, the page-level action menu on those records contains only custom buttons and supported standard buttons. Quick actions appear on the ....
Salesforce Debug Logs Limit Exceeded Exception "The Developer Console didn't set the DEVELOPER_LOG trace flag on your user. Having an active trace flag triggers debug logging. You have 260 MB ....
1. On a report click on the drop-down by 'Edit' button and select 'Export'. 2. You will see two options for export now, 'Formatted Excel' and 'Details Only'. 3. Formatted ....
Sample code: Component: <aura:component implements="lightning:recordHomeTemplate"> <aura:attribute name = "left" type = "Aura.Component[]" /> <aura:attribute name = "middle" type = "Aura.Component[]" /> <aura:attribute name = "right" type = "Aura.Component[]" /> <table> <tr cellpadding = "8" cellspacing = "8" style="vertical-align:top;"> <td width="14%">{!v.left}</td> <td width="1%"></td> <td width="45%">{!v.middle}</td> <td width="1%"></td> <td width="39%">{!v.right}</td> </tr> </table> </aura:component> Design: <design:component> <flexipage:template > <flexipage:region name = "left" defaultwidth = "Medium"/> <flexipage:region name = "middle" defaultwidth = "Medium"/> <flexipage:region name = "right" defaultwidth = "Medium"/> </flexipage:template> ....
1. Go to Developer Console. 2. Navigate to Debug --> View Log Panels… 3. Select Execution Stack. Trigger Execution Stack Developer console Salesforce Visualforce Execution Stack Developer console Salesforce Note: ....
Right click the Log and click Download Log. Or File --> Download Log.
Sample Code: Lightning Component: <aura:component implements="lightning:recordHomeTemplate"> <aura:attribute name = "left" type = "Aura.Component[]" /> <aura:attribute name = "middle" type = "Aura.Component[]" /> <aura:attribute name = "right" type = "Aura.Component[]" /> <table> <tr cellpadding = "8" cellspacing = "8" style="vertical-align:top;"> <td width="14%"> <div class="slds-scrollable" style="height:900px;">{!v.left}</div> </td> <td width="1%"></td> <td width="45%"> <div class="slds-scrollable" style="height:900px;">{!v.middle}</div> </td> <td width="1%"></td> <td width="39%"> <div class="slds-scrollable" style="height:900px;">{!v.right}</div> </td> </tr> </table> </aura:component> Design: <design:component> ....