• Implementing custom record search functionality using Lightning web component. Business Case: Adam is Senior Application Developer in TwoPir Consulting Pvt Ltd. He wants a custom object record search functionality in salesforce so he can quickly search any record quickly. Solution: we can create custom record search functionality in salesforce lightning web components. He is developing […]

    Read More

  • Lightning Object Creator What is Lightning Object Creator?  The Lightning Object Creator is a simple point-and-click tool designed to make an admin’s life easier: take a spreadsheet, and turn it into a brand new object – fields and all – with just a few clicks! Lightning Object Creator is a new platform service that boosts […]

    Read More

  • Lightning Component : collapseSections.cmp <aura:component implements=”force:appHostable” access=”global” >     <!–section 1 start–>       <div aura:id=”fruitsSection”>         <!–section header–>         <h3>             <button aria-controls=”fruitsList”>                 <span onclick=”{!c.toggleSection}” data-auraId=”fruitsSection”>                     <lightning:icon iconName=”utility:switch”                                     size=”x-small”                                     class=”slds-section__title-action-icon slds-button__icon_left”                                     alternativeText=”button icon”                                     />                 </span>                 <span title=”Fruits”>Fruits</span>             </button>         </h3>         <!–section body–>         <div id=”fruitsList”>             <p>Apple</p>             <p>Apricots</p>             <p>Banana</p>             <p>Cherimoya</p>             <p>Grapefruit</p>         </div>     </div>     <!–section 1 end–>     <!–section 2 start–>       <div aura:id=”VegetablesSection”>         <!–section header–>         <h3> […]

    Read More

Post A Comment