Hi Franky,
Greetings from the Syncfusion support.
Query: How can I change the properties of dialog(such as its width, color, etc.) from the edit mode
Based on your query we want to override dialog popup CSS properties while dialoginline template editing. To achieved your requirement using actionComplete with “beginEdit” requestType and we can access the dialog component instance in this event since you can achieve your requirement using following code example.
Please refer the below code example for more information.
|
[App.Vue]
methods: {
actionComplete(args) {
if (args.requestType === 'beginEdit') {
args.dialog.width = 300;
args.dialog.headerContent.style.background = “grey”;
}
}
} |
Please get back to us, if you need further assistance.
Regards,
Balaji Sekar