Hi
Paco,
It
is not possible to change the width or resize or move the editor window dialog.
But if you want to render a custom dialog, then you can prevent the default
editor window by setting args.Cancel to true and add the custom dialog.
|
public void OnPopupOpen(PopupOpenEventArgs<AppointmentData> args)
{
if (args.Type == PopupType.Editor)
{
args.Cancel = true;
// Add custom dialog
}
}
|
Let
us know if you need any assistance.
Regards,
Ruksar Moosa Sait