Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, How to change button text on click function in Angular 12?
Here is the tutorial link for update angular version to 12: Update Angular 11 to Angular 12
Guy’s here are the more demos related to Angular 12 with Bootstrap 5:
- Bootstrap 5 Popover working in Angular 12
- Bootstrap 5 Tooltip working in Angular 12
- Bootstrap5 Modal with Forms in Angular 12
Angular 12 came and Bootstrap 5 also and if you are new then you must check below two links:
Friends now I proceed onwards and here is the working code snippet and please use carefully this to avoid the mistakes:
1. Firstly friends we need fresh angular 12 setup and for this we need to run below commands but if you already have angular 12 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:
npm install -g @angular/cli ng new angulardemo //Create new Angular Project cd angulardemo // Go inside the Angular Project Folder
2. Now friends, here we need to run below commands into our project terminal to install bootstrap 5 modules into our angular application:
npm install bootstrap
3. Now friends we just need to add below code into src/app/app.component.html file to get final out on the web browser:
<div class="container text-center mt-5 mb-5"> <button class="btn btn-primary me-3" (click)="changeText()">{{btnVal}}</button> </div>
4. Now friends we just need to add below code into angular.json file:
"styles": [ ... "node_modules/bootstrap/dist/css/bootstrap.min.css" ]
5. Now friends we just need to add below code into src/app/app.component.ts file for button click functionality:
... export class AppComponent { ... //button text variable btnVal = "Button"; //button click function changeText() { this.btnVal = "Clicked!!" } }
Friends in the end must run ng serve command into your terminal to run the angular 12 project.
Now we are done friends. If you have any kind of query, suggestion and new requirement then feel free to comment below.
Note: Friends, In this post, I just tell the basic setup and things, you can change the code according to your requirements.
I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad because with your views, I will make my next posts more good and helpful.
Jassa
Thanks
hello!
How to change button in action column in mat-table but only in one field / row?
Slawek
I will check and update you, thanks.