NavBarGroupEventArgs.Group Property
In This Article
Gets a group for which the event is fired.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Description |
---|---|
Nav |
A Nav |
#Remarks
Note
Refer to the ASPx
protected void ASPxNavBar1_HeaderClick(object sender, NavBarGroupCancelEventArgs e) {
EventMonitor.TraceEvent(sender, e, "HeaderClick");
ddlItems.Value = e.Group.Name;
ChangeCheckBoxLabel();
cbEnable.Checked = e.Group.Enabled;
cbVisible.Checked = e.Group.Visible;
cbSelect.Checked = !e.Group.Expanded;
}
...
See Also