Hi Ankit, I am facing an error where I a, getting the incompletetask array to be null even though I tried and checked and have written the same code as you are showing in the screen. Ca u help me on how to show you the error and trouble shoot it ?
Hi @Ankit thanks for all these wonderful sessions, really appreciate the time and effort you put into this, one quick question what is the formatter you are using in this to format the html and js files, if its prettier is the default configuration which we get from the sfdx or do we need to add anything else apart from the settings where we add the prettier as our default formatter and format on save? Thanks
Hello Ankit, Thanks for sharing your knowledge, I have a scenario where I have to show order statuses dynamically on the lwc component with the help of progress bar for example if I received order create status then I have to make the progress step green likewise for other statues also. can you share any link or video if you have or could you please make a plan to cover this scenario that will be grate.
I don't have any such video on my channel.But you can take a reference from Platform Events with LWC video on my channel. There I am using a progress bar
amazing stuff sir...i have a doubt, here keyfield is Taskname,but we can have same tasks with different dates, so taskname shouldnt be unique right?...then in this case what can be the keyfield?
I do both. However in this project, I have made changes with the knowledge that we have covered till that day of Bootcamp session, I have improvised it in Part 2
@@TechJourneyWithAnkit I have another query ...do you know the reason why my console.log is showing me 0 for incomplete task array after clicking add task handler even though I added values in it. Both my taskname and taskdate is display in console log but not added to array . Funny thing is those same task are displayed in TO DO LIST lightning card meaning they are added to array but for some reason not showing in console log
Hello Ankit, For sorting I tried to directly use below code But it was not working. Can you point out any issue in this ?? let sortedArr = inputArr.sort((a, b) => a.taskdate - b.taskdate );
Wonderful Session... Thank you so much ankit.. very useful!
Glad you found helpful
Thank You Sir,
This Mini Project Really Helpful for me and all those who want to learn LWC 😀
Glad to hear that
This is really helpful. Thank you for sharing this knowledge
Glad it was helpful!
drag and drop functionality I have seen for the first time although its little complex to understand, thanks for the video
Glad it was helpful!
Thanks Ankit sir.. you are the best..!
God is great😊
Thank you so much sir for this . this is very helpful . you are great
Glad you liked it
God level concepts. Please do more videos related to lwc and JavaScript and projects thanks you so much ❤️
Sure you can check out other playlist on channel as well
Geat job! Very comprehensive and instructive !! thanks sir
Glad you liked it
Very helpful contact 👍
Glad to hear that
Thank you sir, it was a great session!!
Very welcome!
Thanks Ankit🎉
Welcome
Thank you so much Sir
Glad you liked it
very helpful
Glad to hear that
🙏🙏💥
Hi Ankit, I am facing an error where I a, getting the incompletetask array to be null even though I tried and checked and have written the same code as you are showing in the screen. Ca u help me on how to show you the error and trouble shoot it ?
Is the incomplete task array initialized with blank in start ?
Try to debug the code and check at what operation it is failing
आजच project सगळं डोक्यावरून गेलं 😂 It's gonna take lot of practice to me to understand the logic.
प्रयत्नांती परमेश्वर. Watch one more time or untill you get 100 percent
Hi @Ankit thanks for all these wonderful sessions, really appreciate the time and effort you put into this, one quick question what is the formatter you are using in this to format the html and js files, if its prettier is the default configuration which we get from the sfdx or do we need to add anything else apart from the settings where we add the prettier as our default formatter and format on save? Thanks
I am using Preetier only.Amd modified vs code settings to Format on Save. Also enable Autosave as well
when we will refresh the page then all the data will be resets or the data in arrays will remain as it is?
No it will be cleared out. To store the data, checkout the part 2
Hello Ankit, Thanks for sharing your knowledge, I have a scenario where I have to show order statuses dynamically on the lwc component with the help of progress bar for example if I received order create status then I have to make the progress step green likewise for other statues also. can you share any link or video if you have or could you please make a plan to cover this scenario that will be grate.
I don't have any such video on my channel.But you can take a reference from Platform Events with LWC video on my channel. There I am using a progress bar
Okay, thanks for the reply.@@TechJourneyWithAnkit
amazing stuff sir...i have a doubt, here keyfield is Taskname,but we can have same tasks with different dates, so taskname shouldnt be unique right?...then in this case what can be the keyfield?
In the part 2 of this video, we have improvised this. Check that part out
Curious ...when you do these projects ...do you follow best practices or like show us on how it should be done in real life scenarios as well ?
I do both. However in this project, I have made changes with the knowledge that we have covered till that day of Bootcamp session, I have improvised it in Part 2
@@TechJourneyWithAnkit I have another query ...do you know the reason why my console.log is showing me 0 for incomplete task array after clicking add task handler even though I added values in it. Both my taskname and taskdate is display in console log but not added to array . Funny thing is those same task are displayed in TO DO LIST lightning card meaning they are added to array but for some reason not showing in console log
@@awesomekj5812is value added correctly in array ? , you have initialized the array while declaring? Are you using the track decorator with array ?
Hello Ankit, For sorting I tried to directly use below code But it was not working. Can you point out any issue in this ??
let sortedArr = inputArr.sort((a, b) => a.taskdate - b.taskdate );
Check in debug if you are getting a sorted result.