# Agenda View

Understand agenda view where schedule appointments are grouped by date in a table and each appointment is displayed in a single row.

## Content



Agenda view is a view where schedule appointments are grouped by date in a table and each appointment is displayed in a single row. The view does not show row or column headers and the view is sorted by dates in ascending order. The main purpose of the agenda view is to show upcoming events in compact form, so that end-user can quickly pick some event.

The following image shows how the agenda view appears:

![](https://cdn.mescius.io/document-site-files/images/675b9aff-7616-4324-81ac-58e410fb9531/images/agenda-view.png)

In Scheduler, agenda view is supported through the AgendaView control represented by the [C1AgendaView](/componentone/docs/win/online-schedule/) class provided by the [C1.Win.C1Schedule.Extended](/componentone/docs/win/online-schedule/) assembly. To display agenda view along with the schedule, you need to reference the Scheduler control using [Schedule](/componentone/docs/win/online-schedule/) property of the [BaseTableView](/componentone/docs/win/online-schedule/) class. You can choose to display the agenda of the current day, next seven days or for the interval represented by the attached schedule by setting the [ViewType](/componentone/docs/win/online-schedule/) property of the **C1AgendaView** class which accepts value from the [AgendaViewType](/componentone/docs/win/online-schedule/) enumeration. You can also choose whether to display the days without any events in the view by setting the [ShowEmptyDays](/componentone/docs/win/online-schedule/) property.

### Runtime operation

In AgendaView, just like Scheduler, user can edit a particular appointment through the EditAppointment dialog which appears on double clicking an appointment. Similarly, all other runtime operations related to an appointment can be carried out in this view as well using the appointment context menu. For more information on runtime operations related to an appointment, see [Working with Appointments](/componentone/docs/win/online-schedule/concepts/workingwithappointme).