Skip to main content

RibbonSettings.GroupDataBound Property

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

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public RibbonGroupEventHandler GroupDataBound { get; set; }

Property Value

Type Description
RibbonGroupEventHandler

A RibbonGroupEventHandler method to which custom processing is delegated.

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 extension’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 Ribbon extension functions in unbound mode, the GroupDataBound event isn’t raised.

See Also