Hi Srini,
Greetings from Syncfusion Support.
As per your requirement, we have added an addition Alert button in the footer button collection in the editor window. Kindly refer the below snippet,
this.dlgButtons = [ { click: this.dlgalertClick.bind(this), buttonModel: { content: 'Alert', isPrimary: true } }, { click: this.dlgBtnClick.bind(this), buttonModel: { content: 'Save', isPrimary: true } }, { click: this.dlgBtnCancel.bind(this), buttonModel: { content: 'Cancel', isPrimary: true } }];
public dlgalertClick: EmitType<object> = () => {
alert("Additional Alert Button");
} |
And for the same, we have prepared a sample, which can be viewed from the following link,
Kindly check the above sample and revert us, if you need any further assistance.
Regards,
Hareesh