Skip to main content
Tab

ASPxCardView.GroupSelectorInitialize Event

Enables you to customize the group selector.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public event ASPxCardViewGroupSelectorInitializeEventHandler GroupSelectorInitialize

Event Data

The GroupSelectorInitialize event's data class is ASPxCardViewGroupSelectorInitializeEventArgs. The following properties provide information specific to this event:

Property Description
GroupSelector Gets the group selector.

Remarks

protected void ASPxCardView1_GroupSelectorInitialize1(object source, ASPxCardViewGroupSelectorInitializeEventArgs e) {
    e.GroupSelector.Width = 350;
}
See Also