how to create online to-do task checklist in component template and buttons click functionality uses of lightning/flowSupport module in lightning web component LWC | create todo daily task list template application for work using lwc component in LWC

2,976 views


Hey guys, today in this post we are going to learn about how to create online to-do task checklist uses of lwc component template and buttons click functionality in lightning web component LWC.

The lightning/flowSupport module provides events that enable a component to control flow navigation and notify the flow of changes in attribute values.

This example toDos component includes the lightning__FlowScreen target and sets a property in its toDos. To know more details about lightning/flowSupport module, Click Here

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!

 

 

 

Files we used to create to-do task checklist in Salesforce LWC →

lwcToDosList.html LWc HTML File Template HTML file to display to-do task checklist in Salesforce Lightning Web Component (LWC)
lwcToDosList.js LWC JavaScript File It’s hold handleAddTodo & handleUpdatedText action method to add to-do task list in Salesforce LWC.
lwcToDosList.js-meta.xml XML Meta File It is used to where this lightning web component file you want to display as lightning__AppPage, lightning__RecordPage, lightning__HomePage.

 

Final Output →

create todo task checklist in lwc -- w3web.net
 

 

You can download file directly from github by Click Here.

 
 

Other related post that would you like to learn in Salesforce

  • Find the below steps ▾

 

Create Lightning Web Component HTML →

Step 1:- Create Lightning Web Component : lwcToDosList.html

SFDX:Lightning Web Component >> New >> lwcToDosList.html

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 

lwcToDosList.html [Lightning Web Component HTML]

  1.    <template>
  2.    <lightning-card> 
  3.       <div class="slds-p-around_medium">
  4.         <h3 class="slds-text-heading_medium"><lightning-icon icon-name="custom:custom93" size="small"></lightning-icon> <strong style="color:#270086; font-size:13px; margin-right:5px;"> Create toDos component template includes buttons in Lightning Web Component (LWC) </strong></h3>
  5.         <br/><br/>
  6.         <strong> List of ToDos: </strong>
  7.         <ul style="list-style: auto; margin-left:20px; color:#ff0c0c; font-weight:bold;">
  8.             <template if:true={hasTodos} for:each={todosList} for:item="todo">          
  9.                 <li key={todo.id}>{todo.text}</li>
  10.             </template>
  11.          </ul>
  12.  
  13.     <div class="slds-grid slds-wrap">
  14.         <div class="slds-col slds-size_9-of-12">
  15.             <lightning-input
  16.             label="New Todo"
  17.             type="text"
  18.             class="toDoInput"
  19.             onchange={handleUpdatedText}
  20.        ></lightning-input>
  21.         </div>
  22.         <div class="slds-col slds-size_3-of-12 slds-m-top--large">
  23.  
  24.             <lightning-button
  25.             variant="brand"
  26.             label="Add Todo"
  27.             title="Add a new todo"
  28.             onclick={handleAddTodo}></lightning-button>
  29.  
  30.         </div>
  31.     </div>
  32.     <br/>
  33.  
  34.  
  35.     <br/><br/>
  36.         <!--Start RelatedTopics Section-->
  37. <div style="border:1px #ddd solid; padding:10px; background:#eee; margin:40px 0;">
  38.  
  39.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/05/thumbsUpLike.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:16px; font-style:italic; display:inline-block; margin-right:5px;">Don't forget to check out:-</span><a href="https://www.w3web.net/" target="_blank" rel="noopener noreferrer" style="text-decoration:none;" data-aura-rendered-by="440:0">An easy way to learn step-by-step online free Salesforce tutorial, To know more Click  <span style="color:#ff8000; font-size:18px;" data-aura-rendered-by="442:0">Here..</span></a></strong></p>
  40.  
  41.             <br/><br/>
  42.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/07/tickMarkIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:17px; font-style:italic; display:inline-block; margin-right:5px; color:rgb(255 128 0);">You May Also Like →</span> </strong></p>
  43.             <div style="display:block; overflow:hidden;"> 
  44.                 <div style="width: 50%; float:left; display:inline-block">
  45.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  46.                         <li><a href="https://www.w3web.net/lwc-get-set-lightning-checkbox-value/" target="_blank" rel="noopener noreferrer">How to get selected checkbox value in lwc</a></li>
  47.                         <li><a href="https://www.w3web.net/display-account-related-contacts-in-lwc/" target="_blank" rel="noopener noreferrer">how to display account related contacts based on AccountId in lwc</a></li>
  48.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to create lightning datatable row actions in lwc</a></li>
  49.                         <li><a href="https://www.w3web.net/if-and-else-condition-in-lwc/" target="_blank" rel="noopener noreferrer">how to use if and else condition in lwc</a></li>
  50.                         <li><a href="https://www.w3web.net/get-selected-radio-button-value-and-checked-default-in-lwc/" target="_blank" rel="noopener noreferrer">how to display selected radio button value in lwc</a></li>
  51.                     </ul>
  52.             </div>
  53.  
  54.             <div style="width: 50%; float:left; display:inline-block">
  55.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  56.                         <li><a href="https://www.w3web.net/display-account-related-contacts-lwc/" target="_blank" rel="noopener noreferrer">display account related contacts based on account name in lwc</a></li>
  57.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to insert a record of account Using apex class in LWC</a></li>
  58.                         <li><a href="https://www.w3web.net/fetch-picklist-values-dynamic-in-lwc/" target="_blank" rel="noopener noreferrer">how to get picklist values dynamically in lwc</a></li>
  59.                         <li><a href="https://www.w3web.net/edit-save-and-remove-rows-dynamically-in-lightning-component/" target="_blank" rel="noopener noreferrer">how to edit/save row dynamically in lightning component</a></li>
  60.                         <li><a href="https://www.w3web.net/tree-grid-dynamic-expand-collapse-in-lwc/" target="_blank" rel="noopener noreferrer">how to create tree grid with expanded/collapsed section for the entire row in LWC</a></li>
  61.                     </ul>
  62.                 </div>
  63.                <div style="clear:both;"></div> 
  64.                <br/>
  65.                 <div class="youtubeIcon">
  66.                     <a href="https://www.youtube.com/channel/UCW62gTen2zniILj9xE6LmOg" target="_blank" rel="noopener noreferrer"><img src="https://www.w3web.net/wp-content/uploads/2021/11/youtubeIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;"/> <strong>TechW3web:-</strong> To know more, Use this <span style="color: #ff8000; font-weight: bold;">Link</span> </a>
  67.                 </div>
  68.     </div>
  69.  
  70. </div>
  71.  
  72.   <!--End RelatedTopics Section-->
  73.     </div> 
  74.     </lightning-card> 
  75. </template>

Create Lightning Web Component JavaScript →

Step 2:- Create Lightning Web Component : lwcToDosList.js

SFDX:Lightning Web Component >> New >> lwcToDosList.js

lwcToDosList.js [LWC JavaScript File]

  1.   import { LightningElement, api, track } from 'lwc';
  2. import {
  3.     FlowAttributeChangeEvent,
  4.     FlowNavigationNextEvent,
  5. } from 'lightning/flowSupport';
  6.  
  7. export default class LwcToDosList extends LightningElement {
  8.  
  9.     @api
  10.     availableActions = [];
  11.  
  12.     @api
  13.     get todos() {
  14.         return this._todos;
  15.     }
  16.  
  17.     set todos(todos = []) {
  18.         this._todos = [...todos];
  19.     }
  20.  
  21.     @track _todos = [];
  22.  
  23.     get todosList() {
  24.         return this._todos.map((todo) => {
  25.             return { text: todo, id: Date.now().toString() };
  26.         });
  27.     }
  28.  
  29.     get hasTodos() {
  30.         return this._todos && this._todos.length > 0;
  31.     }
  32.  
  33.     handleUpdatedText(event) {
  34.         this._text = event.detail.value;
  35.     }
  36.  
  37.     handleAddTodo() {
  38.         this.template.querySelector('.toDoInput').value="";
  39.         this._todos.push(this._text);
  40.  
  41.         const attributeChangeEvent = new FlowAttributeChangeEvent(
  42.             'todos',
  43.             this._todos
  44.  
  45.         );
  46.  
  47.         this.dispatchEvent(attributeChangeEvent);
  48.  
  49.     }
  50.  
  51. }

Create Lightning Web Component Meta XML →

Step 3:- Create Lightning Web Component : lwcToDosList.js-meta.xml

SFDX:Lightning Web Component >> New >> lwcToDosList.js-meta.xml

lwcToDosList.js-meta.xml [LWC Meta Data XML]

  1.   <?xml version="1.0" encoding="UTF-8"?>
  2. <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
  3.     <apiVersion>45.0</apiVersion>
  4.     <isExposed>true</isExposed>
  5.     <targets> 
  6.         <target>lightning__AppPage</target>
  7.         <target>lightning__RecordPage</target>
  8.         <target>lightning__HomePage</target>
  9.     </targets>
  10. </LightningComponentBundle>

Create Lightning Application →

Step 4:- Create Lightning Application : lwcToDosListApp.app

From Developer Console >> File >> New >> Lightning Application

lwcToDosListApp [Component Application File]

  1.    <aura:application extends="force:slds">
  2.   <c:lwcToDosList/>
  3. </aura:application>

 

Further post that would you like to learn in Salesforce

Flyout is a free, simple way to earn money.

If you think you and your family members also like to earn money in additional time, then go this link. In this site, you can earn money for the lifetime at low effort. To Earn Unlimited Everyday With This Trick, Sign Up Free.. Get Started for Free

Flyout is a free, simple way to earn money by placing sponsored content on your blog

Check Out:- Earn Unlimited Everyday With This Trick:- Click Here

 

 

FAQ (Frequently Asked Questions)

Does Google Docs have a to-do list template?

The Excel and Google Sheets templates allow you to track how many tasks you've completed in total. If you choose to use this To-Do List Template in Word or Google Docs, you can double click the bullet point next to an item, right-click on it, and mark it as complete.

Is there a to-do list template in Word?

Organize your tasks with this accessible to-do list template. This to-do list template for Word allows you to mark each item's priority, due date, what to do, who to contact, steps in progress, and done fields for each entry. Use this task list template as is, or customize it with a variety of style and color options.

Does Google Chrome have a to-do list?

Make lists, outlines, todos, and more. With the New Tab Todo List extension for Chrome, just open a New Tab to capture your ideas, goals, and daily tasks. New Tab Todo List is a friendly space for your lists, outlines, and teams. Use it as your simple to-do list and task manager.

Related Topics | You May Also Like

 
Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 
  

Our Free Courses →

👉 Get Free Course →

📌 Salesforce Administrators

📌 Salesforce Lightning Flow Builder

📌 Salesforce Record Trigger Flow Builder

👉 Get Free Course →

📌 Aura Lightning Framework

📌 Lightning Web Component (LWC)

📌 Rest APIs Integration



Hi, This is Vijay Kumar behind the admin and founder of w3web.net. I am a senior software developer and working in MNC company from more than 8 years. I am great fan of technology, configuration, customization & development. Apart of this, I love to write about Blogging in spare time, Working on Mobile & Web application development, Salesforce lightning, Salesforce LWC and Salesforce Integration development in full time. [Read full bio] | | The Sitemap where you can find all published post on w3web.net

Leave a Comment