Skip to main content

BootstrapRibbon.GroupDataBound Event

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

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public event BootstrapRibbonGroupEventHandler GroupDataBound

Event Data

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

Property
Group

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 Group property of the event’s argument.

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

See Also