Hi Everyone !!! Today i am going to discuss one of the feature that is recently in winter 21. As i had previously discussed using custom notification from Process builder and Flows. You can read the blog from here if not read already. So lets discuss the how can we use custom notification using apex … Continue reading Custom Notification through Apex
Key Take Aways Trailheadx 20

Trailheadx is annual developer event for Salesforce, where they celebrate , bring up new product level announcement and let customer , vendors , developers, student meet at one place and blaze trails together . In this blog , i will be highlighting key announcements made in the first time virtual held event. Code Builder: Welcome … Continue reading Key Take Aways Trailheadx 20
Dependent Picklist in LWC
Today i am going to share how to create a field dependency in LWC component. We are using Custom fields on Account that are Upsell(UpsellOpportunity__c) and SLA(SLA__c). We created the field dependency on Object level using these field as shown in image below. So now we are all set to work LWC Component: Html: <template> … Continue reading Dependent Picklist in LWC
Top 5 Features of Spring 20

Today , I am going to share top 5 features of Salesforce Spring 20 release which i liked and seems to have increased efficiency to great extent. Mobile: Customized Mobile Experiences and the New Salesforce Mobile App So with the new Salesforce mobile app, Mobile Publisher gets custom notifications, deep linking, and other key features … Continue reading Top 5 Features of Spring 20
Create Record Through LWC

Hi Friends . This is my first post on LWC. So today we will discuss 2 different way of creating record through LWC. 1.Creating Form and Save Controller . template.html <template> <lightning-card title="Create Account" icon-name="standard:account"> <div class="slds-p-around_x-small"> <div class="slds-p-around_medium lwc-bg"> <lightning-input type="text" label="Name" value={rec.Name} onchange={handleNameChange} required></lightning-input> </div> <div class="slds-p-around_medium lwc-bg"> <template if:true={TypePicklistValues.data}> <lightning-combobox name="progress" label="Type" … Continue reading Create Record Through LWC
You must be logged in to post a comment.