This is a migrated thread and some comments may be shown as answers.

Non Time Entries?

1 Answer 28 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Keith
Top achievements
Rank 1
Keith asked on 11 Dec 2016, 04:41 AM

I have a need for a scheduler that is not time specific and not necessarily all-day (though maybe treating them as all day is a way to do it).

So, I need the Month View and the ability to add any number of entries in any given day. 

I need the added items to display alphabetically.

And I need NO TIMES to show up in the output nor in the Data Entry form.

How do I do this?

1 Answer, 1 is accepted

Sort by
0
Anton
Telerik team
answered on 14 Dec 2016, 09:30 AM
Hi Keith,

To sort appointments by some custom criteria you could you should use the AppointmentComparer. More info on that matter you can find in the following forum thread. This forum post holds and example page where a CustomAppointmentCompararer class is implemented.

In MonthView only subject is displayed for all appointments (no time). In order to hide Start and End time in the advanced form you could use the OnClientFormCreated event and hide them as in the code 

var $ = $telerik.$;
function OnClientFormCreated(sender, args) {
    $(".rfbRow.rsTimePick").hide();
}

Regards,
Anton
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Scheduler
Asked by
Keith
Top achievements
Rank 1
Answers by
Anton
Telerik team
Share this question
or