Skip to main content
A newer version of this page is available. .

ASPxScheduler.GroupType Property

Gets or sets a value that specifies the type of grouping for the appointments of the ASPxScheduler control.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v18.2.dll

Declaration

[DefaultValue(SchedulerGroupType.None)]
public SchedulerGroupType GroupType { get; set; }

Property Value

Type Default Description
SchedulerGroupType **None**

A SchedulerGroupType enumeration value that specifies how appointments are grouped within the scheduler control.

Available values:

Name Description
None

No grouping is applied.

Date

Grouping by dates. Appointments are grouped by dates.

Resource

Grouping by resources. Appointments are grouped by resources.

Remarks

The GroupType property setting can be superseded with the SchedulerViewBase.GroupType property value for a particular View.

Refer to the Custom appointment form with modified behavior to get complete code.

<dx:ASPxScheduler id="ASPxScheduler1" runat="server" GroupType="Resource" >
    ...
</dx:ASPxScheduler>
See Also