How to disable Schedule Quick Info Full Screen on mobile device

Image_7812_1731173120037


i want to retain this ui on mobile devices


3 Replies

SR Swathi Ravi Syncfusion Team November 13, 2024 09:45 AM UTC

Hi Felipe,
Thank you for reaching out to us!

We have logged your feature request, and it will be considered for inclusion in one of our upcoming releases. You can track the progress of this request using the feedback link below:

We prioritize feature implementations based on factors such as customer demand, feature ranking, and our roadmap. Please feel free to vote for this feature using the link above to help us gauge interest.

In the meantime, you can display a small quick popup in the mobile view similar to the desktop view by utilizing the actionBegin event and disabling the isAdaptive property. Here is an example of how you can achieve this:

HTML:

  <ejs-schedule #scheduleObj (actionBegin)="onActionBegin($event)">
  </ejs-schedule>

TS:

public onActionBegin(args: ActionEventArgs): void {
   if (args.requestType === 'toolbarItemRendering') {
     this.scheduleObj.element.classList.remove('e-device');
     this.scheduleObj.isAdaptive = false;
   }
 }

Output:


Regards,
Swathi


YO Yonz November 18, 2024 01:39 AM UTC

Thank you, It works.



SR Swathi Ravi Syncfusion Team November 18, 2024 03:56 AM UTC

Felipe Varon,


We are glad to hear that our provided solution was worked for you. Please get back to use if you need any further assistance.


Loader.
Up arrow icon