COUNTDOWN COMPONENT IN LIGHTNING
Hi Trailblazer Community , Today i am going to share the information of the Countdown or Timer Lightning Component. Prerequisite : Basic knowledge of Lightning, Basic knowledge of Lightning Data Service. Need to work before : Create on object named Property__c -> Create one field named Date_End__c (Date/Time type). So here i am sharing the code of the component. Step 1 : Create One Lightning Component Give name it to "TimerComponent". ( You can give other name also. ). Copy the below code in the component. TimerComponent.cmp <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" > <!-- Attributes for Countdown Components--> <aura:attribute name="day" type="Integer" /> <aura:attribute name="hour" type="Integer" /> <aura:attribute name="minute" type="Integer" /> <aura:attribute...