how to make agenda in maui?

1 Answer 25 Views
Calendar Scheduler
Ioannis
Top achievements
Rank 1
Iron
Ioannis asked on 11 Mar 2024, 12:20 PM

I tried to migrate xamarin agenda to Maui but i cant make it with dayview?? maybe some how i can remove the hours from the view?? 

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="AimmsApp.Task.Views.AgendaMenu"
             xmlns:resx="using:AimmsApp.Resources"
             xmlns:input="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"
             xmlns:views="clr-namespace:AimmsApp.Task.Views;assembly=AimmsApp"
             Title="{x:Static resx:Resources.Agenda}">
    <AbsoluteLayout x:Name="mainLayout">
        <input:RadCalendar x:Name="calendar" ViewMode="Agenda" AppointmentsSource="{Binding Appointments}">

            <input:RadCalendar.AgendaViewSettings>
                <input:AgendaViewSettings MonthItemFormat="YYYY MMM"
                                          WeekItemStartDateFormat="dd MMMM"
                                          WeekItemEndDateFormat="dd"
                                          DayItemFormat="EEE d MMM"
                                          AppointmentItemTimeFormat="HH mm"
                                          AppointmentItemEndDateFormat="MMM d"
                                          AppointmentItemStartDateFormat="MMM d" 
                                          IsHeaderSticky="True" 
                />
            </input:RadCalendar.AgendaViewSettings>
            <input:RadCalendar.BindingContext>
                <views:CalendarView />
            </input:RadCalendar.BindingContext>

        </input:RadCalendar>
    </AbsoluteLayout>
</ContentPage>

1 Answer, 1 is accepted

Sort by
0
Didi
Telerik team
answered on 11 Mar 2024, 02:08 PM

Hello,

The Telerik Xamarin Calendar and Scheduler control is not the same in Telerik .NET MAUI. In Xamarin the control is a native control, while in .NET MAUI they are completely new controls developed from scratch. In fact, our continued development for UI for MAUI is to try and remove as many native components and replace them with .NET MAUI components. This is intentional because it allows for better cross-platform compatibility and stability. 

So AgendaView is still missing view in the .NET MAUI Scheduler. We have this item logged: https://feedback.telerik.com/maui/1643472-scheduler-add-agenda-view 

On this link: https://www.telerik.com/support/whats-new/maui-ui/roadmap you can review the Telerik MAUI RoadMap for 2024 year. 

Regards,
Didi
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Calendar Scheduler
Asked by
Ioannis
Top achievements
Rank 1
Iron
Answers by
Didi
Telerik team
Share this question
or