|
this.buttons = [
{
'click': this.fetchData.bind(this), // update your code
// Accessing button component properties by buttonModel property
buttonModel: {
content: 'OK',
cssClass: 'e-flat',
//Enables the primary button
isPrimary: true
}
},
{
'click': this.closeModal.bind(this),// update your code
buttonModel: {
content: 'Cancel',
cssClass: 'e-flat'
}
}
];
|