×

iFour Logo

What is Property binding and how to implement it in Angular?

Kapil Panchal - June 16, 2021

Listening is fun too.

Straighten your back and cherish with coffee - PLAY !

  • play
  • pause
  • pause
What is Property binding and how to implement it in Angular?

What is Data binding?


Data binding is one of the most key features in Angular. Data binding in Angular works by synchronizing the data in the components with the UI so that it reflects the present value of the data.

When the value in the data changes it is detected by Data binding and the changes are reflected in the View, this will make the HTML dynamic.

  1. one-way data binding
  2. two-way data binding

Template expressions {{}} and square braces [] are used for binding a property to the DOM In one-way data binding.

The square braces one-way binding method can also be called property binding because it data-binds data to the property of an element.

What is Property binding?


Property binding is the prime way of binding data in Angular. The square braces [] are used for binding the data to a property of an element. The property is put onto the element enclosed with brackets i.e., [property].

The main purpose of property binding is that it facilitates the developer to control elements' property. Angular Property binding helps the developer to set values for HTML elementsā€™ properties or directives. Property binding involves updating the value of a property in the component and binding it to an element in the view template.

We can do things like toggle button functionality, set paths programmatically, and share values between components, etc. using property binding.

Property Binding is a one-way data-binding mechanism. We bind a DOM element property to a field which is a defined property in our component TypeScript code.

Syntax :

Ā 
                
                
                    

In property binding, value is moved in one direction from a componentā€™s property to a target element property.

The target property is enclosed within the square brackets []. This target property is the DOM property to which we want to assign the value.

Angular evaluates the right-hand side of the assignment as a dynamic expression when the brackets [] appear in the code. When there are no brackets, Angular considers the right-hand side of value as a string literal and sets the property to that static value.

Approach -

Ā 

  1. Define a property element in the component class (component.ts) file.
  2. In the template file (component.html), set the property of the HTML element by assigning the property value to the component class fileā€™s element.

Example

Create an Angular application named ā€œproperty-bindingā€ by executing this command:

Ā 
    ng new property-binding
                    

We will make use of property binding in four ways in our application.

We will create a form with one text-input field, one password input field, a login button, and an image.

We will set values of the attributes of these elements using property-binding in this application.

We will use bootstrap for designing the form.


app.component.html :
    

Property Binding in Angular!!

In the template file, we have created a form with 2 input elements and one button. Input elements are for entering username and password. And a login button.

We have set the value property of the input element of form using property binding which will be shown as the default value in the username input element.

We have set a value of the ā€œmaxlengthā€ attribute of the password input element using property binding. This means that the user can enter a maximum of 6 characters in the password field.

We have used [attr.maxlength]="max" Because this is an elementā€™s attribute, not a native property

We have set a mechanism where the login button will get disabled after 10 seconds/10000 milliseconds after the page gets loaded/refreshed using property binding. This code is put in the constructor() of the componentā€™s TS file.

As well as we have set the value of the ā€œsrcā€, ā€œheightā€ and ā€œwidthā€ attributes of the image tag using the property binding technique.

All the values that are on the right-hand side of the [property] are defined and set in the typescript file of the AppComponent.


app.component.ts :
    import { Component, OnInit } from '@angular/core';
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.css']
    })
    export class AppComponent implements OnInit {
      Defaultval = 'Enter Username here'; 
      src = 'https://angular.io/assets/images/logos/angular/angular.svg';
      max=6;
      height=300;
      width=500;
      buttonDisabled = false;  
      
      constructor() {  
        setTimeout(() =>{  
          this.buttonDisabled = true;  
        }, 10000);  
      }  
      ngOnInit() {  
      }  
    }
                    

In the typescript file, we have set values in AppComponent class which we want to assign in the HTML file.

ā€œDefaultvalā€ is for setting the default value in the input field.

ā€œsrcā€ is for setting the path of the image tag.

ā€œmaxā€ is for setting the maximum allowed characters in the password field.

ā€œheightā€ & ā€œwidthā€ are for setting the height and width attribute of the img tag.

ā€œbuttonDisabled" is for setting the disabled attribute of the button tag.

Searching for Genuine AngularJS Development Company ? Your Search ends here

We have set the buttonDisabled value to false by default, this allows the user to click the login button. 10 seconds after the page gets loaded/refreshed the login button will be disabled. For this mechanism, we have used the setTimeout() method and set the buttonDisabled value to true.

This will generate the following output:

The Username field has a default value specified in the ts file. And the Login button is enabled when the page got loaded.

Output-1

Output-1

The login button is disabled after 10 seconds of the page gets loaded.

Output-2

Output-2

The maximum number of characters allowed in the password field is 6. The user will not be allowed to enter more than 6 characters in the field.

Output-3

Output-3

Conclusion


Property binding is one of the key features of Angular. Property binding is used for passing the data from the component class (component.ts) and setting the value of the element in the template file (component.html). We can bind data using property binding as well as string interpolation.

The difference between property binding and string interpolation is: Interpolation uses the {{expression}} to send the value to the componentā€™s template whereas Property binding uses [] to send values from the component to the template.

What is Property binding and how to implement it in Angular? Table of Content 1. What is Data binding? 2. What is Property binding? 3. Conclusion What is Data binding? Data binding is one of the most key features in Angular. Data binding in Angular works by synchronizing the data in the components with the UI so that it reflects the present value of the data. When the value in the data changes it is detected by Data binding and the changes are reflected in the View, this will make the HTML dynamic. one-way data binding two-way data binding Template expressions {{}} and square braces [] are used for binding a property to the DOM In one-way data binding. The square braces one-way binding method can also be called property binding because it data-binds data to the property of an element. What is Property binding? Property binding is the prime way of binding data in Angular. The square braces [] are used for binding the data to a property of an element. The property is put onto the element enclosed with brackets i.e., [property]. The main purpose of property binding is that it facilitates the developer to control elements' property. Angular Property binding helps the developer to set values for HTML elementsā€™ properties or directives. Property binding involves updating the value of a property in the component and binding it to an element in the view template. We can do things like toggle button functionality, set paths programmatically, and share values between components, etc. using property binding. Property Binding is a one-way data-binding mechanism. We bind a DOM element property to a field which is a defined property in our component TypeScript code. Syntax : Ā  In property binding, value is moved in one direction from a componentā€™s property to a target element property. The target property is enclosed within the square brackets []. This target property is the DOM property to which we want to assign the value. Angular evaluates the right-hand side of the assignment as a dynamic expression when the brackets [] appear in the code. When there are no brackets, Angular considers the right-hand side of value as a string literal and sets the property to that static value. Approach - Ā  Define a property element in the component class (component.ts) file. In the template file (component.html), set the property of the HTML element by assigning the property value to the component class fileā€™s element. Read More: An Important Guide On Angular Directives And Their Types Example Create an Angular application named ā€œproperty-bindingā€ by executing this command: Ā  ng new property-binding We will make use of property binding in four ways in our application. We will create a form with one text-input field, one password input field, a login button, and an image. We will set values of the attributes of these elements using property-binding in this application. We will use bootstrap for designing the form. app.component.html : Property Binding in Angular!! Username Password Login In the template file, we have created a form with 2 input elements and one button. Input elements are for entering username and password. And a login button. We have set the value property of the input element of form using property binding which will be shown as the default value in the username input element. We have set a value of the ā€œmaxlengthā€ attribute of the password input element using property binding. This means that the user can enter a maximum of 6 characters in the password field. We have used [attr.maxlength]="max" Because this is an elementā€™s attribute, not a native property We have set a mechanism where the login button will get disabled after 10 seconds/10000 milliseconds after the page gets loaded/refreshed using property binding. This code is put in the constructor() of the componentā€™s TS file. As well as we have set the value of the ā€œsrcā€, ā€œheightā€ and ā€œwidthā€ attributes of the image tag using the property binding technique. All the values that are on the right-hand side of the [property] are defined and set in the typescript file of the AppComponent. app.component.ts : import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit { Defaultval = 'Enter Username here'; src = 'https://angular.io/assets/images/logos/angular/angular.svg'; max=6; height=300; width=500; buttonDisabled = false; constructor() { setTimeout(() =>{ this.buttonDisabled = true; }, 10000); } ngOnInit() { } } In the typescript file, we have set values in AppComponent class which we want to assign in the HTML file. ā€œDefaultvalā€ is for setting the default value in the input field. ā€œsrcā€ is for setting the path of the image tag. ā€œmaxā€ is for setting the maximum allowed characters in the password field. ā€œheightā€ & ā€œwidthā€ are for setting the height and width attribute of the img tag. ā€œbuttonDisabled" is for setting the disabled attribute of the button tag. Searching for Genuine AngularJS Development Company ? Your Search ends here See here We have set the buttonDisabled value to false by default, this allows the user to click the login button. 10 seconds after the page gets loaded/refreshed the login button will be disabled. For this mechanism, we have used the setTimeout() method and set the buttonDisabled value to true. This will generate the following output: The Username field has a default value specified in the ts file. And the Login button is enabled when the page got loaded. Output-1 The login button is disabled after 10 seconds of the page gets loaded. Output-2 The maximum number of characters allowed in the password field is 6. The user will not be allowed to enter more than 6 characters in the field. Output-3 Conclusion Property binding is one of the key features of Angular. Property binding is used for passing the data from the component class (component.ts) and setting the value of the element in the template file (component.html). We can bind data using property binding as well as string interpolation. The difference between property binding and string interpolation is: Interpolation uses the {{expression}} to send the value to the componentā€™s template whereas Property binding uses [] to send values from the component to the template.
Kapil Panchal

Kapil Panchal

A passionate Technical writer and an SEO freak working as a Content Development Manager at iFour Technolab, USA. With extensive experience in IT, Services, and Product sectors, I relish writing about technology and love sharing exceptional insights on various platforms. I believe in constant learning and am passionate about being better every day.

Build Your Agile Team

Categories

Ensure your sustainable growth with our team

Talk to our experts
Sustainable
Sustainable
 
Blog Our insights
Power BI Report Server: Key Features and Elements

31 March 2025

Vinod Satapara

Power BI Report Server: Key Features and Elements

Every CTO knows the struggle of managing complex reports. The inefficiency of scattered data, the constant juggling between reporting tools, the challenge of ensuring accurate KPIs...

Row-Level Security in Power BI: Implementation & Use Cases

27 March 2025

Kapil Panchal

Row-Level Security in Power BI: Implementation & Use Cases

The very first reason why you should implement Row Level Security is to foster trust, a crucial element for any business's success. Next, it reduces data clutter and helps you load...

Power BI Performance Best Practices For Superior Results

25 March 2025

Kapil Panchal

Power BI Performance Best Practices For Superior Results

The performance of Power BI is significantly influenced by two essential factors: design consistency and the rapid loading of BI elements. This holds true whether you choose Tableau...