Change Scheduler Editor width

Hi, is there any way to change the default Scheduler Editor popup width?

And what about allowing to resize and move this dialog? 


Thanks.


3 Replies

RM Ruksar Moosa Sait Syncfusion Team May 11, 2022 09:55 AM UTC

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



AG Aicom Global Software May 11, 2022 11:56 AM UTC

No need, Thanks



RM Ruksar Moosa Sait Syncfusion Team May 12, 2022 02:55 PM UTC

Thanks for the update.


Loader.
Up arrow icon