Angular 12 tutorial #25 Todo list in angular

Angular 12 tutorial #25 Todo list in angular

Code Step By Step

2 года назад

39,016 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@rupallonare7649
@rupallonare7649 - 25.07.2023 20:54

best best best

Ответить
@FUNMINTRAJ
@FUNMINTRAJ - 21.03.2023 11:58

I want to add edit button also how to do that

Ответить
@FUNMINTRAJ
@FUNMINTRAJ - 21.03.2023 11:38

Sir I need help in this

Ответить
@dr.ankitpatel6446
@dr.ankitpatel6446 - 20.10.2022 07:09

Sir...do you have any video which perform crud operation using json file?

Ответить
@maneshwar3054
@maneshwar3054 - 11.08.2022 15:55

You can use the actual index of array instead of passing the id to remove array element, and then using splice method to remove the selected task from array list,


<ul *ngFor="let item of tasks;index as i">
<li>{{item.value}} <button type="button"
(click)="removeTask(i)">Remove Task</button></li>
</ul>

removeTask(selIndex:number){
this.tasks.splice(selIndex,1)
}

Ответить
@archanadhaygude3269
@archanadhaygude3269 - 23.06.2022 13:46

List is not displayed on browser..?? Error in .ts file i.e, name is not defined

Ответить
@anusuyar8423
@anusuyar8423 - 08.06.2022 22:24

🙏👏

Ответить
@laiparekh7114
@laiparekh7114 - 29.05.2022 15:50

how to make the input field empty after adding the data to list

Ответить
@murilodemeloreis3175
@murilodemeloreis3175 - 05.05.2022 12:58

If I use the item index from the loop and pass it as param in the remove() method and apply splice() to the array, does it work properly?

Ответить
@srinivasaraokagitala8846
@srinivasaraokagitala8846 - 22.03.2022 11:48

How to clear the input value in text box after add task
How to remove all tasks one time

Ответить
@chathurangamdk
@chathurangamdk - 08.03.2022 07:39

Using the length as the id will create a small bug here.
- add 2 items to the list
- remove 1st item
- add another item
- remove any item
it will remove both the items from the list. Because both of them share the same id.

Ответить
@mhussnain2943
@mhussnain2943 - 06.02.2022 23:37

How can we add new task inside the new task which is already created

Ответить
@venkat7667
@venkat7667 - 21.01.2022 16:01

super

Ответить
@vasanthapandiyanm2405
@vasanthapandiyanm2405 - 28.11.2021 20:28

G could you please post life cycle hook videos?

Ответить
@user-qh5qo2tr7l
@user-qh5qo2tr7l - 10.10.2021 17:40

Thanks you, bro

Ответить
@lk3622
@lk3622 - 30.06.2021 09:44

Thank you so much sir.Please do more angular simple projects sir😊

Ответить
@sureshjangid3395
@sureshjangid3395 - 28.06.2021 05:29

hello bro, Please upload video on how to use PHP in React.js pls

Ответить
@EdgardoLuis
@EdgardoLuis - 27.06.2021 10:28

Sería bueno tutoriales también en español 🥺

Ответить