sfscheduler no text display

Hi


here i have attached image when block is small subject text is not displaying. same thing happen for week view too.


My code is simple as below

    <scheduler:SfScheduler

        x:Name="Scheduler" AppointmentsSource="{Binding Listjobs}"

        AllowedViews="Day,Week,WorkWeek,Month,TimelineDay,TimelineWeek,TimelineWorkWeek,TimelineMonth"

        AppointmentDrop="Scheduler_AppointmentDrop"

        Tapped="Scheduler_Tapped"

        View="Day">

        <!--<scheduler:SfScheduler.HeaderView>

            <scheduler:SchedulerHeaderView Background="#fff" />

        </scheduler:SfScheduler.HeaderView>-->

        <scheduler:SfScheduler.DaysView>

            <scheduler:SchedulerDaysView />

        </scheduler:SfScheduler.DaysView>

        <scheduler:SfScheduler.AppointmentMapping>

            <scheduler:SchedulerAppointmentMapping

                EndTime="EndTime"

                StartTime="StartTime"

                Subject="Subject"

                Background="TechColor"

                TextColorMapping="TextColor"

                />

        </scheduler:SfScheduler.AppointmentMapping>

    </scheduler:SfScheduler>


 scheduler_!.pngscheduler_2.png


7 Replies

VM Vidyalakshmi Mani Syncfusion Team August 2, 2024 01:58 PM UTC

Hi Kamini,


Thank you for reaching out. We've tested the MAUI SfScheduler control based on the details you've provided. In our tests, the appointment subject was displayed correctly. We've included the sample we used for testing. Please review it and let us know if the problem persists. If not, kindly modify our sample to replicate your scenario or share your specific sample where the issue occurs. This will help us better understand the problem and provide an appropriate solution.


Regards,

Vidyalakshmi M.



Attachment: MauiScheduler_9a03b9ba.zip


KA kamini August 5, 2024 02:16 PM UTC

Hi,


Thanks for reply. I am able to reproduce In your example.  In viewmodel.cs file add below list object . I mean when slot is 30 minute it is not displayed 


   Listjobs.Add(new Meeting

   {

       StartTime = now.Date.AddDays(-1).AddHours(11),

       EndTime = now.Date.AddDays(-1).AddMinutes(30),

       Subject = "BaseketBallPractice",

       TechColor = Colors.LightBlue,

       TextColor = Colors.Black

   });


   Listjobs.Add(new Meeting

   {

       StartTime = now.Date.AddDays(-1).AddHours(11),

       EndTime = now.Date.AddDays(-1).AddMinutes(30),

       Subject = "Shopping",

       TechColor = Colors.LightBlue,

       TextColor = Colors.Black

   });

   Listjobs.Add(new Meeting

   {

       StartTime = now.Date.AddDays(-1).AddHours(11),

       EndTime = now.Date.AddDays(-1).AddMinutes(30),

       Subject = "Practice All Day",

       TechColor = Colors.LightBlue,

       TextColor = Colors.Black

   });


   Listjobs.Add(new Meeting

   {

       StartTime = now.Date.AddDays(-1).AddHours(11),

       EndTime = now.Date.AddDays(-1).AddMinutes(30),

       Subject = "Shopping All day",

       TechColor = Colors.LightBlue,

       TextColor = Colors.Black

   });


Image_1885_1722867362480



VM Vidyalakshmi Mani Syncfusion Team August 8, 2024 01:18 PM UTC

Hi Kamini,


Regarding issue “When block is small subject text is not displaying on Android


We have checked, and we can replicate the reported issue from our end. We have logged an issue report for the same; we will fix this issue and include the issue fix in our weekly NuGet release update which is expected to be available by August 27, 2024. We appreciate your patience until then.


You can track the status of this report through the following feedback link: Long-appointment-texts-not-displayed-on-android-in-daysview


Note: The provided feedback link is private, and you need to log in to view this feedback.


Disclaimer: Inclusion of this solution in the weekly release may change due to other factors including but not limited to QA checks and works reprioritization


Regards,

Vidyalakshmi M.




VO Vishal Omprasad Syncfusion Team August 27, 2024 01:59 PM UTC

Hi Kamini,

We have fixed the reported scenario "Long Appointment texts are not displayed in DaysView on Android" from our end. Due to the testing phase, we have prepared a custom patch that includes the fix and have shared it below for your reference. Please test the patch and let us know if your issue is resolved.

Note:
Before installing the patch, kindly remove the bin and obj folders from all projects in the solution and clear the NuGet cache by following this link:  How to Clear NuGet Cache.

Disclaimer:

Please note that the custom patch was created for version 26.2.4 specifically to address this issue. We will include the issue fix in our upcoming weekly NuGet release update. We appreciate your patience until then.

Regards,
Vishal O.


Attachment: Syncfusion_MAUIScheduler_NuGet_e007e2f3.zip


VM Vidyalakshmi Mani Syncfusion Team September 3, 2024 08:57 AM UTC

Hi Kamini,


Regarding issue “Long Appointment texts are not displayed in DaysView on Android”: 

We have fixed the reported issue and included the issue fix in our latest weekly NuGet release update version 26.2.12, which is available for download at nuget.org


Root cause: On the Android platform, long appointment texts in the DaysView were not displayed because the line count for the text exceeded the appointment height.


We thank you for your support and appreciate your patience in waiting for this update. Please get in touch with us if you require any further assistance.


Regards,

Vidyalakshmi M.




MS Matthias Spanier replied to Vidyalakshmi Mani November 5, 2024 04:28 PM UTC

The problem still exists on Android in version 27.1.58





VO Vishal Omprasad Syncfusion Team November 6, 2024 01:09 PM UTC

Hi Matthias,

Regarding “issue still occurs on version 27.1.58”:

We have checked the reported query with a simple sample using NuGet version 27.1.58. However, we were unable to replicate the reported scenario on our end. Appointments with long texts were displayed without any issues on the Android platform. We have attached the tested sample below for your reference.

Please check the attached sample and let us know whether you are still facing the same issue. If the problem persists, kindly modify our sample and revert to us with an issue reproducible sample, video/screenshot demonstrating the issue being replicated, etc., This additional information will enable us to check the scenario more effectively and provide you a better solution.

Regards,
Vishal O.


Attachment: MauiScheduler_6907332b.zip

Loader.
Up arrow icon