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

ASPxRibbon.GroupDataBound Event

Occurs after a group has been bound to a data source.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event RibbonGroupEventHandler GroupDataBound

Event Data

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

Property Description
Group Gets a group object related to the event.

Remarks

The GroupDataBound event is raised for each group after it is data bound to the corresponding data from the specified data source. This event enables you to customize settings of the related group before it is finally rendered. Handling the GroupDataBound event, you can implement custom logic to dynamically map properties of a ribbon control’s groups to the required data fields.

The processed tab can be accessed using the RibbonGroupEventArgs.Group property of the event’s argument.

If the control functions in unbound mode, the GroupDataBound event isn’t raised.

See Also