Articles in this section
Category / Section

Passing Model Options in Syncfusion Angular Components

1 min read

Generally, Syncfusion Angular Components supports Property Binding. We can bind property to the syncfusion controls with in square brackets ‘[]’. In Some cases, we need to bind the whole properties as an object rather than property by property.

To achieve this requirement, we can use options property for Syncfusion Angular Components. We can bind EJComponents properties as an JSON object to options property.

Here we rendered ejButton Component and size, height and text of ejButton properties are passed as JSON object to options property.

Refer to the below code snippet to declare the options property in view.

[app.component.html]

<button type="button" id="button" ej-button [options]="option"></button>

 

 

Refer to the below code snippet to pass the JSON data to options property.

[app.component.ts]

import { Component } from '@angular/core';

 

@Component({

  selector: 'ej-app',

  templateUrl: './app.component.html',

})

export class AppComponent {

  option: any;

  constructor(){

  this.option = {

    height:'50px', size: ‘large', text: 'my-button'

  }

  }

}

 

 

Note:

Two way Databinding Property is not supported in Options property.

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied