Category: Development

Development

Record iteration in lightning component

We are going to show the Salesforce record using the Aura iteration. here we are going to list out records using lightning component and apex controller. aura:iteration iterates the collection of data items and renders to the frontend. Backend data changes are rerendered automatically on the web page. It also supports iterations containing components that are […]

Kumaresan 
Development

Media Query Breakpoints For Lightning Component Responsive Design and Development

In Lightning Component or Aura Component some time you need to write some custom CSS for responsive or device Compatability. Let’s discuss salesforce responsive design. Media Queries Breakpoints playing the main role in responsive design as well as salesforce SaaS products. Learn some basic stuff regarding, Screen resolution, Device width, and Screen Size. Standard breakpoints […]

Kumaresan 
Lightning Components Tutorial
Development

How to change the tab label in Lightning Component

Are you working with Lightning Component (Aura) tab functionality? Need to change your Tab label and Icon based on business logic? Cool !!! Now it’s not a big deal, we can do this kind of changes using WorkspaceAPI. Let’s get started with the coding to change the label. Component: <aura:component implements=”flexipage:availableForAllPageTypes” access=”global” > <lightning:workspaceAPI aura:id=”workspace” […]

Kumaresan 
salesforce-community
Development

Customer Community  Vs Partner Community 

Customer Community Vs Partner Community Hey There! Are you confused salesforce community cloud license? Don’t worry here you will have some idea then you will kick start your SaaS journey for your business growth. Customer Community Partner Community It’s for B2C portals It’s for B2B portals Digital Experience Management: Available Digital Experience Management: Available Customer Service […]

Kumaresan 
lwc
Development

UI Test Automation With Salesforce

UI test automation with Salesforce has some unique characteristics, both in terms of test creation and test maintenance. Test Creation Test Maintenance Solution Salesforce Testing Flow The testing process of Salesforce is the same as any application. The tester should have a clear idea of the features which are built during the test process. It […]

Kumaresan 
Mixed DML
Development

[FIX] Mixed DML Error In Salesforce

What is Mixed DML Error? In our salesforce environment, Sometimes we can’t perform DML  operation between setup sObjects and non-setup sObjects.  In this kind of scenarios we will have an error that is Mixed DML error. Setup Object Example User Profile Etc.. Non-Setup Object Example Lead Account Contact Etc.. Solution To Fix Mixed DML Error […]

Kumaresan