AppointmentData values not showed on Scheduler Syncfusion Blazor 18.2.0.56

I used this code from your sample page but it doesn't show the AppointmentData values on the scheduler
The hourglass keeps the page waiting for data forever and you can't click anywhere

@using Syncfusion.Blazor.Schedule

   
   
       
   
   

@code{
    public string[] Resources { get; set; } = { "Owners" };
    List DataSource = new List
{
        new AppointmentData { Id = 1, Subject = "Meeting", StartTime = new DateTime(2020, 1, 31, 9, 30, 0) , EndTime = new DateTime(2020, 1, 31, 11, 0, 0), OwnerId = 1 }
    };
    public List OwnersData { get; set; } = new List
{
        new ResourceData{ OwnerText = "Nancy", Id = 1, OwnerColor = "#ffaa00" },
        new ResourceData{ OwnerText = "Steven", Id = 2, OwnerColor = "#f8a398" },
        new ResourceData{ OwnerText = "Michael", Id = 3, OwnerColor = "#7499e1" }
    };
    public class AppointmentData
    {
        public int Id { get; set; }
        public string Subject { get; set; }
        public string Location { get; set; }
        public DateTime StartTime { get; set; }
        public DateTime EndTime { get; set; }
        public string Description { get; set; }
        public bool IsAllDay { get; set; }
        public string RecurrenceRule { get; set; }
        public string RecurrenceException { get; set; }
        public Nullable RecurrenceID { get; set; }
        public int OwnerId { get; set; }
    }
    public class ResourceData
    {
        public int Id { get; set; }
        public string OwnerText { get; set; }
        public string OwnerColor { get; set; }
    }
}




Good News!!
Problem solved with Blazor version 18.2.0.57




9 Replies 1 reply marked as answer

RV Ravikumar Venkatesan Syncfusion Team September 10, 2020 01:15 PM UTC

Hi Walter, 

Greetings from Syncfusion support. 

We have checked your reported problem based on your shared code. But, it works fine at our end. We have prepared a video demo and sample for your reference and it can be available below. 


Kindly try the above sample and get back to us if you need any further assistance. 


Regards, 
Ravikumar Venkatesan 



WM Walter Martin September 10, 2020 01:28 PM UTC

it didn't work in my side using Blazor 18.2.0.56 but after updating to 18.2.0.57 everything is working fine

Thank you so much


VD Vinitha Devi Murugan Syncfusion Team September 11, 2020 06:44 AM UTC

Hi Walter,  
 
Thanks for your update. 
  
We are happy that your reported problem has been resolved  
  
Regards,  
M. Vinitha devi. 



TC Tom Corrigan September 16, 2020 12:39 AM UTC

I have the same problem with version 18.2.0.58. The sample code referred to above also doesn't work.


AK Alagumeena Kalaiselvan Syncfusion Team September 16, 2020 02:01 PM UTC

Hi Tom, 

Thanks for your update. 

As you said we have checked the previously shared sample code but unfortunately we could not reproduced the reported issue at our end. We suspect that problem occurred due to browser/nuget cache with your machine. So, we suggest to clear the nuget/browser cache once and check this issue. Refer the below UG for that. 

Kindly share the below details to validate this issue further, if this issue still persist 
  • Share the issue depicting image/video
  • Did you faced any console error ? if so, please share the issue details

Regards 
Alagumeena.K 



TC Tom Corrigan September 25, 2020 12:43 AM UTC

The problem persists. Attached is the example project ej2-blazor-schedule-resources-sample-609170497 updated to the latest version Syncfusion (18.2.0.59). Embedded in the zip file is a video of the app while it is running  (Screen Recording 2020-09-24 at 8.21.28 PM.mov)

Attachment: ej2blazorscheduleresourcessample609170497_2_7c15e31b.zip


AK Alagumeena Kalaiselvan Syncfusion Team September 27, 2020 05:20 AM UTC

Hi Tom, 
  
Thanks for sharing sample with us. 
  
We have checked your sample with attached screenshot at our end but Scheduler loaded with events properly at our end. Currently we don’t have mac device to check your issue in mac directly due to remote work situation. So, we have checked event loading issue in browser stack but your issue not replicated. Refer the below screenshot which depicts the proper loading of Scheduler events. 
  
 
  
Regards 
Alagumeena.K 



TC Tom Corrigan October 2, 2020 12:40 AM UTC

I can confirm that this issue only occurs on MacOS. I've now tested on Windows and Linux (Ubuntu 20.04) and everything works fine.


AK Alagumeena Kalaiselvan Syncfusion Team October 13, 2020 12:50 PM UTC

Hi Tom, 

Thanks for your update. 

We have checked the Appointment data loading issue in MAC device and could replicate this issue at our end  in the specified version 18.2.56. The issue has been resolved in latest version 18.3.40, so kindly upgrade to latest version to overcome the issue. 

Please let us know, if you need further assistance. 

Regards 
Alagumeena.K 


Marked as answer
Loader.
Up arrow icon