Hello,
We've encountered a problem with our custom editor.
Our Syncfusion version is v18.3.0.44
So here is the problem.
We are manually changing the header through the PopupOpen event like this.
function onPopupOpen(args) {
console.log(args);
if (args.type === "Editor") {
let editor = args.element.ej2_instances[0];
editor.header = '<div class="e-title-text">Test</div>';
editor.buttons = [ {buttonModel: {content: 'Close', cssClass: 'btn btn-primary'}, click: editorClose} ];
editor.dataBind();
}
}
When we open the editor the first time it looks like this.

The second time it looks like this.

For some reason that we haven't found, the header reverts back to the original header.
Thank tou for your help in advance