Hi Henrique,
Thank you for the update.
We have checked your requirement of “Displaying InlineView appointment in HH:mm time format”, As per Schedule implementation Inline view appointment doesn’t display in device time format and your requirement can be achieved by setting the TimeTextFormat property of MonthInlineViewStyle in OnMonthInlineLoadedEvent.
Please refer the following code example for the same,
[C#]
schedule.OnMonthInlineLoadedEvent += Schedule_OnMonthInlineLoadedEvent;
private void Schedule_OnMonthInlineLoadedEvent(object sender, MonthInlineLoadedEventArgs e)
{
var appointments = e.appointments.Cast<ScheduleAppointment>().ToList();
MonthInlineViewStyle monthInlineViewStyle = new MonthInlineViewStyle();
if (appointments != null && appointments.Count > 0)
{
monthInlineViewStyle.TimeTextFormat = "HH:mm";
}
e.monthInlineViewStyle = monthInlineViewStyle;
} |
We have prepared a sample based on your requirement,
You can also refer our UG documentation to know more about MaskedEditor,
We hope this helps. If the shared information doesn’t meet your requirement kindly revert us with more details such as SfSchedule version, time format provided element and platform. It will be helpful for us to analyze further and provide you the best solution at the earliest.
Regards,
Karthik Raja A